diff options
Diffstat (limited to 'app/Controllers/javascriptController.php')
| -rw-r--r-- | app/Controllers/javascriptController.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/app/Controllers/javascriptController.php b/app/Controllers/javascriptController.php index d7c600113..ce25d03c9 100644 --- a/app/Controllers/javascriptController.php +++ b/app/Controllers/javascriptController.php @@ -3,7 +3,7 @@ class FreshRSS_javascript_Controller extends FreshRSS_ActionController { public function firstAction(): void { - $this->view->_layout(false); + $this->view->_layout(null); } public function actualizeAction(): void { @@ -20,9 +20,9 @@ class FreshRSS_javascript_Controller extends FreshRSS_ActionController { public function nbUnreadsPerFeedAction(): void { header('Content-Type: application/json; charset=UTF-8'); $catDAO = FreshRSS_Factory::createCategoryDao(); - $this->view->categories = $catDAO->listCategories(true, false); + $this->view->categories = $catDAO->listCategories(true, false) ?: []; $tagDAO = FreshRSS_Factory::createTagDao(); - $this->view->tags = $tagDAO->listTags(true); + $this->view->tags = $tagDAO->listTags(true) ?: []; } //For Web-form login |
