aboutsummaryrefslogtreecommitdiffstats
path: root/tests/template/template.php
diff options
context:
space:
mode:
authorChris Smith <toonarmy@phpbb.com>2008-11-23 01:08:08 +0000
committerChris Smith <toonarmy@phpbb.com>2008-11-23 01:08:08 +0000
commitd26f38c4e0af60b6579f74e8c34c8fe7454fa7cf (patch)
tree67d96133a78976ec353ea3da2412c4f8d8d2d2c4 /tests/template/template.php
parent99fa62267ef4492d115002e3a13e2beb232adf01 (diff)
downloadforums-d26f38c4e0af60b6579f74e8c34c8fe7454fa7cf.tar
forums-d26f38c4e0af60b6579f74e8c34c8fe7454fa7cf.tar.gz
forums-d26f38c4e0af60b6579f74e8c34c8fe7454fa7cf.tar.bz2
forums-d26f38c4e0af60b6579f74e8c34c8fe7454fa7cf.tar.xz
forums-d26f38c4e0af60b6579f74e8c34c8fe7454fa7cf.zip
all 557 tests pass now :D
git-svn-id: file:///svn/phpbb/trunk@9091 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'tests/template/template.php')
-rw-r--r--tests/template/template.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/template/template.php b/tests/template/template.php
index 0639e263bb..c9a083ae68 100644
--- a/tests/template/template.php
+++ b/tests/template/template.php
@@ -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
);