diff --git a/application/modules/opac/views/scripts/module.phtml b/application/modules/opac/views/scripts/module.phtml index 4422c463b29df2416e529e25c052ebd43528cab9..506c6d341abefd953b629de0acdcc197ec4a9fde 100644 --- a/application/modules/opac/views/scripts/module.phtml +++ b/application/modules/opac/views/scripts/module.phtml @@ -26,7 +26,9 @@ echo '<body '.$this->bodyParam.'>'; </div> <!-- site_web_content --> </div> <!-- siteWeb --> <?php -echo $this->render('footer.phtml'); +echo $this->partial('footer.phtml', + array('portail_cfg_site' => $this->profil->getCfgSiteAsArray())); + $html = ob_get_contents(); ob_end_clean(); diff --git a/application/modules/opac/views/scripts/portail.phtml b/application/modules/opac/views/scripts/portail.phtml index bbef99fc7b22dbc477225b06109969f68c4f9d3a..678986e142ca3bb9689579a60529b163f2da255d 100644 --- a/application/modules/opac/views/scripts/portail.phtml +++ b/application/modules/opac/views/scripts/portail.phtml @@ -38,7 +38,8 @@ echo '<body '.$this->bodyParam.'>'; <?php -echo $this->render('footer.phtml'); +echo $this->partial('footer.phtml', + array('portail_cfg_site' => $this->profil->getCfgSiteAsArray())); $html = ob_get_contents(); ob_end_clean(); diff --git a/application/modules/opac/views/scripts/sansMenuGauche.phtml b/application/modules/opac/views/scripts/sansMenuGauche.phtml index e874630c0785d9935bdac414f66a37dc39187745..62e81d0556a77debc5a271f729b015e7e06a679b 100644 --- a/application/modules/opac/views/scripts/sansMenuGauche.phtml +++ b/application/modules/opac/views/scripts/sansMenuGauche.phtml @@ -17,7 +17,8 @@ echo '<body '.$this->bodyParam.'>'; </div> <?php -echo $this->render('footer.phtml'); +echo $this->partial('footer.phtml', + array('portail_cfg_site' => $this->profil->getCfgSiteAsArray())); $html = ob_get_contents(); ob_end_clean();