aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Controller/StaticController.php
diff options
context:
space:
mode:
authorJeremy Benoist <j0k3r@users.noreply.github.com>2016-07-21 16:17:53 +0200
committerGitHub <noreply@github.com>2016-07-21 16:17:53 +0200
commit8c7d7c0300093517939af3bb5742d5930761cce7 (patch)
tree904afc5873ef09257b231c07a2b0c1e166a09acb /src/Wallabag/CoreBundle/Controller/StaticController.php
parent78d17270960fa5211107682fca6a4f7fd6ddc88c (diff)
parent57c608fa94cdc148f5fc48b7c1e984bbf507e34b (diff)
downloadwallabag-8c7d7c0300093517939af3bb5742d5930761cce7.tar.gz
wallabag-8c7d7c0300093517939af3bb5742d5930761cce7.tar.zst
wallabag-8c7d7c0300093517939af3bb5742d5930761cce7.zip
Merge pull request #2199 from Simounet/facto/social-links
Handling socials links into a config file
Diffstat (limited to 'src/Wallabag/CoreBundle/Controller/StaticController.php')
-rw-r--r--src/Wallabag/CoreBundle/Controller/StaticController.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/Controller/StaticController.php b/src/Wallabag/CoreBundle/Controller/StaticController.php
index b41302f8..2a57f06f 100644
--- a/src/Wallabag/CoreBundle/Controller/StaticController.php
+++ b/src/Wallabag/CoreBundle/Controller/StaticController.php
@@ -12,9 +12,11 @@ class StaticController extends Controller
12 */ 12 */
13 public function howtoAction() 13 public function howtoAction()
14 { 14 {
15 $addonsUrl = $this->container->getParameter('addons_url');
16
15 return $this->render( 17 return $this->render(
16 'WallabagCoreBundle:Static:howto.html.twig', 18 'WallabagCoreBundle:Static:howto.html.twig',
17 [] 19 ['addonsUrl' => $addonsUrl]
18 ); 20 );
19 } 21 }
20 22