1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-08 17:56:52 +02:00

all 557 tests pass now :D

git-svn-id: file:///svn/phpbb/trunk@9091 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Chris Smith
2008-11-23 01:08:08 +00:00
parent 99fa62267e
commit d26f38c4e0
2 changed files with 14 additions and 1 deletions

View File

@@ -18,7 +18,11 @@ require_once '../phpBB/includes/constants.php';
require_once '../phpBB/includes/functions.php';
require_once '../phpBB/includes/template.php';
$config = array(
if (!isset($config))
{
$config = array();
}
$config += array(
'load_tplcompile' => true
);