Fix whitespace formatting

This commit is contained in:
Matthew Dent 2017-12-23 11:09:37 -05:00 committed by Mario
parent 34d28e7ba9
commit b5b2e34da5

View File

@ -263,20 +263,20 @@ class Router {
} }
if(! \App::$error) { if(! \App::$error) {
$arr = array('content' => \App::$page['content'], 'replace' => false); $arr = array('content' => \App::$page['content'], 'replace' => false);
call_hooks(\App::$module . '_mod_content', $arr); call_hooks(\App::$module . '_mod_content', $arr);
if(! $arr['replace']) { if(! $arr['replace']) {
if($this->controller && method_exists($this->controller,'get')) { if($this->controller && method_exists($this->controller,'get')) {
$arr = array('content' => $this->controller->get()); $arr = array('content' => $this->controller->get());
} }
elseif(function_exists(\App::$module . '_content')) { elseif(function_exists(\App::$module . '_content')) {
$func = \App::$module . '_content'; $func = \App::$module . '_content';
$arr = array('content' => $func($a)); $arr = array('content' => $func($a));
} }
} }
call_hooks(\App::$module . '_mod_aftercontent', $arr); call_hooks(\App::$module . '_mod_aftercontent', $arr);
\App::$page['content'] = (($arr['replace']) ? $arr['content'] : \App::$page['content'] . $arr['content']); \App::$page['content'] = (($arr['replace']) ? $arr['content'] : \App::$page['content'] . $arr['content']);
} }
} }
} }