|
From: Bart v. B. <ba...@us...> - 2002-02-14 16:09:43
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv3834
Modified Files:
functions.php
Log Message:
Use default style if user doesn't have a theme set (shouldn't happen)
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.117
retrieving revision 1.118
diff -C2 -r1.117 -r1.118
*** functions.php 13 Feb 2002 15:40:51 -0000 1.117
--- functions.php 14 Feb 2002 16:09:36 -0000 1.118
***************
*** 256,260 ****
if ( !$board_config['override_user_style'] )
{
! if ( $userdata['user_id'] != ANONYMOUS && isset($userdata['user_style']) )
{
if ( $theme = setup_style($userdata['user_style']) )
--- 256,260 ----
if ( !$board_config['override_user_style'] )
{
! if ( $userdata['user_id'] != ANONYMOUS && $userdata['user_style'] > 0 )
{
if ( $theme = setup_style($userdata['user_style']) )
***************
*** 1050,1052 ****
}
! ?>
\ No newline at end of file
--- 1050,1052 ----
}
! ?>
|