From a624033c5bf2faae8cf52cc60d252f544e17d2e5 Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sun, 22 Apr 2001 23:08:57 +0000 Subject: [PATCH] Okay it seems the template setup has moved to the DB ... thanks for telling me :) git-svn-id: file:///svn/phpbb/trunk@202 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/common.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/phpBB/common.php b/phpBB/common.php index 117eb18d06..b88bf09282 100644 --- a/phpBB/common.php +++ b/phpBB/common.php @@ -54,7 +54,6 @@ $image_msnm = "$url_images/msnm.gif"; // Find Users real IP (if possible) $user_ip = ($HTTP_X_FORWARDED_FOR) ? $HTTP_X_FORWARDED_FOR : $REMOTE_ADDR; -$template = new Template("./templates/Default"); include('includes/template.inc'); include('includes/error.'.$phpEx); @@ -96,6 +95,8 @@ else $sys_timezone = $config["system_timezone"]; $sys_template = $config['sys_template']; $sys_lang = $default_lang; + + } include('language/lang_'.$default_lang.'.'.$phpEx);