]> git.immae.eu Git - github/wallabag/wallabag.git/blobdiff - src/Wallabag/CoreBundle/Controller/StaticController.php
Merge pull request #3245 from wallabag/fix-bc
[github/wallabag/wallabag.git] / src / Wallabag / CoreBundle / Controller / StaticController.php
index f5fcabd8fe4e6cc93f6ddca1ae63f8ed3137be00..82714217b1455ef9d9303405b6b72a619277ef5c 100644 (file)
@@ -13,8 +13,9 @@ class StaticController extends Controller
     public function howtoAction()
     {
         $addonsUrl = $this->container->getParameter('addons_url');
+
         return $this->render(
-            'WallabagCoreBundle:Static:howto.html.twig',
+            '@WallabagCore/themes/common/Static/howto.html.twig',
             ['addonsUrl' => $addonsUrl]
         );
     }
@@ -25,7 +26,7 @@ class StaticController extends Controller
     public function aboutAction()
     {
         return $this->render(
-            'WallabagCoreBundle:Static:about.html.twig',
+            '@WallabagCore/themes/common/Static/about.html.twig',
             [
                 'version' => $this->getParameter('wallabag_core.version'),
                 'paypal_url' => $this->getParameter('wallabag_core.paypal_url'),
@@ -39,7 +40,7 @@ class StaticController extends Controller
     public function quickstartAction()
     {
         return $this->render(
-            'WallabagCoreBundle:Static:quickstart.html.twig',
+            '@WallabagCore/themes/common/Static/quickstart.html.twig',
             []
         );
     }