aboutsummaryrefslogtreecommitdiff
path: root/app/controllers/entryController.php
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers/entryController.php')
-rwxr-xr-xapp/controllers/entryController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/entryController.php b/app/controllers/entryController.php
index 9ae7bcd07..a99038068 100755
--- a/app/controllers/entryController.php
+++ b/app/controllers/entryController.php
@@ -26,7 +26,7 @@ class entryController extends ActionController {
$entryDAO = new EntryDAO ();
if ($id == false) {
- $entries = $entryDAO->listNotReadEntries ();
+ $entries = $entryDAO->listEntries ('not_read');
} else {
$entry = $entryDAO->searchById ($id);
$entries = $entry !== false ? array ($entry) : array ();