* remove unnecessary parentheses in include/require

This commit is contained in:
slawkens
2018-05-29 21:00:56 +02:00
parent e1ddf58119
commit 42d23e9b37
42 changed files with 554 additions and 554 deletions

View File

@@ -47,7 +47,7 @@ class Hook
global $db, $config, $template_path, $ots, $content, $twig;
if(file_exists(BASE . $this->_file)) {
$ret = require(BASE . $this->_file);
$ret = require BASE . $this->_file;
}
return $ret === null || $ret == 1 || $ret;