aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Helper/Redirect.php
diff options
context:
space:
mode:
Diffstat (limited to 'src/Wallabag/CoreBundle/Helper/Redirect.php')
-rw-r--r--src/Wallabag/CoreBundle/Helper/Redirect.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Helper/Redirect.php b/src/Wallabag/CoreBundle/Helper/Redirect.php
index 918d9266..59172db4 100644
--- a/src/Wallabag/CoreBundle/Helper/Redirect.php
+++ b/src/Wallabag/CoreBundle/Helper/Redirect.php
@@ -4,6 +4,7 @@ namespace Wallabag\CoreBundle\Helper;
4 4
5use Symfony\Component\Routing\Router; 5use Symfony\Component\Routing\Router;
6use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage; 6use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorage;
7use Wallabag\CoreBundle\Entity\Config;
7 8
8/** 9/**
9 * Manage redirections to avoid redirecting to empty routes. 10 * Manage redirections to avoid redirecting to empty routes.
@@ -27,7 +28,7 @@ class Redirect
27 */ 28 */
28 public function to($url, $fallback = '') 29 public function to($url, $fallback = '')
29 { 30 {
30 if ($this->actionMarkAsRead == 0) { 31 if (Config::REDIRECT_TO_HOMEPAGE === $this->actionMarkAsRead) {
31 return $this->router->generate('homepage'); 32 return $this->router->generate('homepage');
32 } 33 }
33 34