Skip to content
Snippets Groups Projects
Commit 9bc35fcd authored by llaffont's avatar llaffont
Browse files

Correction utilisation paramètres profil dans le footer

parent 19ec2b6f
No related merge requests found
......@@ -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();
......
......@@ -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();
......
......@@ -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();
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment