aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/EntryController.php
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2017-03-30 16:07:48 +0200
committerThomas Citharel <tcit@tcit.fr>2017-03-30 16:07:48 +0200
commit273b6f06584092f3b596406bf4c0d57aa738e8bf (patch)
tree167c4ba09d219bf890d2a282d52a34ee1656f7c5 /src/Wallabag/CoreBundle/Controller/EntryController.php
parent90f95027a8c713047fc436bce271cb3e52bc3dee (diff)
downloadwallabag-273b6f06584092f3b596406bf4c0d57aa738e8bf.tar.gz
wallabag-273b6f06584092f3b596406bf4c0d57aa738e8bf.tar.zst
wallabag-273b6f06584092f3b596406bf4c0d57aa738e8bf.zip
Rename method from *username to *user
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller/EntryController.php')
-rw-r--r--src/Wallabag/CoreBundle/Controller/EntryController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/EntryController.php b/src/Wallabag/CoreBundle/Controller/EntryController.php
index f7398e69..8d2ac6d4 100644
--- a/src/Wallabag/CoreBundle/Controller/EntryController.php
+++ b/src/Wallabag/CoreBundle/Controller/EntryController.php
@@ -227,7 +227,7 @@ class EntryController extends Controller
227 public function showUnreadAction(Request $request, $page) 227 public function showUnreadAction(Request $request, $page)
228 { 228 {
229 // load the quickstart if no entry in database 229 // load the quickstart if no entry in database
230 if ($page == 1 && $this->get('wallabag_core.entry_repository')->countAllEntriesByUsername($this->getUser()->getId()) == 0) { 230 if ($page == 1 && $this->get('wallabag_core.entry_repository')->countAllEntriesByUser($this->getUser()->getId()) == 0) {
231 return $this->redirect($this->generateUrl('quickstart')); 231 return $this->redirect($this->generateUrl('quickstart'));
232 } 232 }
233 233