// an other bugfix about remi display header and footer new system

This commit is contained in:
mMarinetti
2011-10-28 13:33:18 +00:00
parent de59d56ed4
commit 22c3205216
+4 -5
View File
@@ -124,18 +124,17 @@ abstract class ControllerCore
if ($this->checkAccess())
{
// postProcess handles ajaxProcess
// postProcess handles ajaxProcess
$this->postProcess();
if ($this->display_header || (isset($this->className) && $this->className))
if (!$this->content_only && ($this->display_header || (isset($this->className) && $this->className)))
{
$this->setMedia();
$this->initHeader();
}
$this->initContent();
if ($this->display_footer || (isset($this->className) && $this->className))
if (!$this->content_only && ($this->display_footer || (isset($this->className) && $this->className)))
$this->initFooter();
// default behavior for ajax process is to use $_POST[action] or $_GET[action]