aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/common.php
diff options
context:
space:
mode:
authorPaul S. Owen <psotfx@users.sourceforge.net>2001-07-21 14:35:35 +0000
committerPaul S. Owen <psotfx@users.sourceforge.net>2001-07-21 14:35:35 +0000
commit124929b5079e1b7b945cee9229f83ed1f40801bc (patch)
treec43f0fb0634fe5deeb6f38c2631ee46ec51fece4 /phpBB/common.php
parent54fcf137a5bf5516af3526c4a232f8ac0a613b38 (diff)
downloadforums-124929b5079e1b7b945cee9229f83ed1f40801bc.tar
forums-124929b5079e1b7b945cee9229f83ed1f40801bc.tar.gz
forums-124929b5079e1b7b945cee9229f83ed1f40801bc.tar.bz2
forums-124929b5079e1b7b945cee9229f83ed1f40801bc.tar.xz
forums-124929b5079e1b7b945cee9229f83ed1f40801bc.zip
Opps, double assigned same board_config var
git-svn-id: file:///svn/phpbb/trunk@722 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/common.php')
-rw-r--r--phpBB/common.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/common.php b/phpBB/common.php
index 2a7a3e0b0d..c3f846d336 100644
--- a/phpBB/common.php
+++ b/phpBB/common.php
@@ -40,7 +40,6 @@ 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/error.'.$phpEx);
include($phpbb_root_path . 'includes/message.'.$phpEx);
include($phpbb_root_path . 'includes/sessions.'.$phpEx);
include($phpbb_root_path . 'includes/auth.'.$phpEx);
@@ -98,7 +97,7 @@ else
$board_config['allow_sig'] = $config['allow_sig'];
$board_config['allow_namechange'] = $config['allow_namechange'];
$board_config['allow_avatar_local'] = $config['allow_avatar_local'];
- $board_config['allow_avatar_remote'] = $config['allow_avatar_local'];
+ $board_config['allow_avatar_remote'] = $config['allow_avatar_remote'];
$board_config['allow_avatar_upload'] = $config['allow_avatar_upload'];
$board_config['require_activation'] = $config['require_activation'];
$board_config['override_user_themes'] = $config['override_themes'];