diff -r 1e0db016717d -r b91e0b89dccd src/Company/BaseBundle/Controller/IndexController.php --- 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)); }