mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
Opps, double assigned same board_config var
git-svn-id: file:///svn/phpbb/trunk@722 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
54fcf137a5
commit
124929b507
1 changed files with 1 additions and 2 deletions
|
@ -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'];
|
||||
|
|
Loading…
Add table
Reference in a new issue