1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-05 14:17:49 +02:00

Should fix the "Call to undefined function parse_admin()" test issue.

This commit is contained in:
Cameron
2021-01-25 10:43:17 -08:00
parent 55eccce7d3
commit d03ef3a670

View File

@@ -15,7 +15,13 @@
public function testAdminScripts()
{
$exclude = array('index.php', 'menus.php'); // FIXME menus defines e_ADMIN_AREA which messes up other tests.
$exclude = array(
'index.php',
'menus.php', // FIXME menus defines e_ADMIN_AREA which messes up other tests.
'header.php',
'footer.php'
);
$this->loadScripts(e_ADMIN, $exclude);
}