diff options
| author | 2014-10-02 22:02:09 +0200 | |
|---|---|---|
| committer | 2014-10-02 22:02:09 +0200 | |
| commit | 94520ee326d1ad7323172a6d92ec0645e4606b73 (patch) | |
| tree | 59cf91cc125f48d3b0453162891bdc92636e6a9e /app/Controllers/feedController.php | |
| parent | 3b6b7d08d3c84dd9dc094fa3e0c0c58336552114 (diff) | |
Fix category not appear on feed.add page (GET)
Must apply to 0.8.1 and 0.9.1
See https://github.com/marienfressinaud/FreshRSS/issues/649
Diffstat (limited to 'app/Controllers/feedController.php')
| -rwxr-xr-x | app/Controllers/feedController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index b2b53185e..eb26d9786 100755 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -171,7 +171,7 @@ class FreshRSS_feed_Controller extends Minz_ActionController { // GET request so we must ask confirmation to user Minz_View::prependTitle(Minz_Translate::t('add_rss_feed') . ' ยท '); - $this->view->categories = $this->catDAO->listCategories(); + $this->view->categories = $this->catDAO->listCategories(false); $this->view->feed = new FreshRSS_Feed($url); try { // We try to get some more information about the feed |
