aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/ConfigController.php
diff options
context:
space:
mode:
authorThomas Citharel <tcit@tcit.fr>2017-06-01 10:42:19 +0200
committerThomas Citharel <tcit@tcit.fr>2017-06-06 15:36:21 +0200
commitbe9d693e74e41fdcdb18bf80aa1aff614154bcce (patch)
tree2e74f165061d45294a6732a06cfe61ebeeb67535 /src/Wallabag/CoreBundle/Controller/ConfigController.php
parent6ed2627bb35561e32d702fbe67247349dd67453e (diff)
downloadwallabag-be9d693e74e41fdcdb18bf80aa1aff614154bcce.tar.gz
wallabag-be9d693e74e41fdcdb18bf80aa1aff614154bcce.tar.zst
wallabag-be9d693e74e41fdcdb18bf80aa1aff614154bcce.zip
remove craueconfig domain name setting and add a proper one in parameters
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller/ConfigController.php')
-rw-r--r--src/Wallabag/CoreBundle/Controller/ConfigController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/ConfigController.php b/src/Wallabag/CoreBundle/Controller/ConfigController.php
index 0e61c642..89d27425 100644
--- a/src/Wallabag/CoreBundle/Controller/ConfigController.php
+++ b/src/Wallabag/CoreBundle/Controller/ConfigController.php
@@ -151,7 +151,7 @@ class ConfigController extends Controller
151 'token' => $config->getRssToken(), 151 'token' => $config->getRssToken(),
152 ], 152 ],
153 'twofactor_auth' => $this->getParameter('twofactor_auth'), 153 'twofactor_auth' => $this->getParameter('twofactor_auth'),
154 'wallabag_url' => $this->get('craue_config')->get('wallabag_url'), 154 'wallabag_url' => $this->getParameter('domain_name'),
155 'enabled_users' => $this->getDoctrine() 155 'enabled_users' => $this->getDoctrine()
156 ->getRepository('WallabagUserBundle:User') 156 ->getRepository('WallabagUserBundle:User')
157 ->getSumEnabledUsers(), 157 ->getSumEnabledUsers(),