diff options
Diffstat (limited to 'app/Models/Context.php')
| -rw-r--r-- | app/Models/Context.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Models/Context.php b/app/Models/Context.php index 3ea5a29eb..bb6fa4cbd 100644 --- a/app/Models/Context.php +++ b/app/Models/Context.php @@ -362,7 +362,7 @@ final class FreshRSS_Context { if (empty(self::$categories)) { $catDAO = FreshRSS_Factory::createCategoryDao(); - self::$categories = $catDAO->listCategories(); + self::$categories = $catDAO->listCategories(true); } switch($type) { @@ -458,7 +458,7 @@ final class FreshRSS_Context { if (empty(self::$categories)) { $catDAO = FreshRSS_Factory::createCategoryDao(); - self::$categories = $catDAO->listCategories(); + self::$categories = $catDAO->listCategories(true); } if (FreshRSS_Context::userConf()->onread_jump_next && strlen($get) > 2) { |
