|
From: Paul S. O. <ps...@us...> - 2002-03-23 23:12:35
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv5498/includes
Modified Files:
functions.php
Log Message:
timezone setup should be isset not !empty ... GMT is 0 after all .. oops
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.128
retrieving revision 1.129
diff -C2 -r1.128 -r1.129
*** functions.php 19 Mar 2002 01:00:37 -0000 1.128
--- functions.php 23 Mar 2002 23:12:31 -0000 1.129
***************
*** 197,201 ****
}
! if ( !empty($userdata['user_timezone']) )
{
$board_config['board_timezone'] = $userdata['user_timezone'];
--- 197,201 ----
}
! if ( isset($userdata['user_timezone']) )
{
$board_config['board_timezone'] = $userdata['user_timezone'];
|