src/Company/BaseBundle/Controller/IndexController.php
changeset 17 a16b5806e3f0
parent 13 ed54c98a7fc8
--- a/src/Company/BaseBundle/Controller/IndexController.php	Wed Oct 26 15:39:04 2011 +0200
+++ b/src/Company/BaseBundle/Controller/IndexController.php	Wed Oct 26 16:01:33 2011 +0200
@@ -19,7 +19,8 @@
     
     public function otherAction()
     {
-        return $this->render('CompanyBaseBundle:Index:other_page.html.twig');
+        $tag_id = $this->getRequest()->query->get('tag');
+        return $this->render('CompanyBaseBundle:Index:other_page.html.twig', array('tag_id' => $tag_id));
     }