|
From: Paul S. O. <ps...@us...> - 2001-12-16 01:27:19
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv7532/includes
Modified Files:
functions.php
Log Message:
Fix bug #493735 was still using old config value name for theme
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.93
retrieving revision 1.94
diff -C2 -r1.93 -r1.94
*** functions.php 2001/12/14 02:39:44 1.93
--- functions.php 2001/12/16 01:27:16 1.94
***************
*** 1043,1050 ****
$template = new Template($phpbb_root_path . "templates/" . $board_config['board_template']);
}
-
if( empty($theme) )
{
! $theme = setup_style($board_config['default_theme']);
}
--- 1043,1049 ----
$template = new Template($phpbb_root_path . "templates/" . $board_config['board_template']);
}
if( empty($theme) )
{
! $theme = setup_style($board_config['default_style']);
}
|