src/Company/BaseBundle/Controller/IndexController.php
changeset 21 b91e0b89dccd
parent 17 a16b5806e3f0
--- a/src/Company/BaseBundle/Controller/IndexController.php	Thu Oct 27 21:24:29 2011 +0200
+++ b/src/Company/BaseBundle/Controller/IndexController.php	Thu Oct 27 21:52:54 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));
     }