aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-07-24 11:39:00 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-07-24 11:39:00 +0000
commit7090e785a99166307cc678a7e03f5a3dd121e7df (patch)
tree6d6c621429e797438a6be85a40582e13086d247a /phpBB/common.php
parent66f3131922c0aedcb317f389c65a6e7f22e050ab (diff)
downloadforums-7090e785a99166307cc678a7e03f5a3dd121e7df.tar
forums-7090e785a99166307cc678a7e03f5a3dd121e7df.tar.gz
forums-7090e785a99166307cc678a7e03f5a3dd121e7df.tar.bz2
forums-7090e785a99166307cc678a7e03f5a3dd121e7df.tar.xz
forums-7090e785a99166307cc678a7e03f5a3dd121e7df.zip
Changed extension of templates to php
git-svn-id: file:///svn/phpbb/trunk@741 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index 794aceec60..b33d6a6eb7 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -39,7 +39,7 @@ if(empty($phpbb_root_path))
}
include($phpbb_root_path . 'config.'.$phpEx);
include($phpbb_root_path . 'includes/constants.'.$phpEx);
-include($phpbb_root_path . 'includes/template.inc');
+include($phpbb_root_path . 'includes/template.'.$phpEx);
include($phpbb_root_path . 'includes/message.'.$phpEx);
include($phpbb_root_path . 'includes/sessions.'.$phpEx);
include($phpbb_root_path . 'includes/auth.'.$phpEx);
@@ -113,6 +113,7 @@ else
$board_config['board_email_from'] = stripslashes($config['email_from']);
$board_config['flood_interval'] = $config['flood_interval'];
$board_config['session_length'] = $config['session_length'];
+// $board_config['session_max'] = $config['session_max'];
$board_config['cookie_name'] = $config['cookie_name'];
$board_config['cookie_path'] = $config['cookie_path'];
$board_config['cookie_domain'] = $config['cookie_domain'];