|
From: Paul S. O. <ps...@us...> - 2001-11-03 21:49:04
|
Update of /cvsroot/phpbb/phpBB2/includes
In directory usw-pr-cvs1:/tmp/cvs-serv19914/includes
Modified Files:
functions.php page_header.php
Log Message:
Fixed bug #477831 + some minor alterations
Index: functions.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/functions.php,v
retrieving revision 1.78
retrieving revision 1.79
diff -C2 -r1.78 -r1.79
*** functions.php 2001/10/25 23:21:11 1.78
--- functions.php 2001/11/03 21:49:01 1.79
***************
*** 787,806 ****
"-1" => "(GMT -1:00 hours) Azores, Cape Verde Islands",
"0" => "(GMT) Casablanca, Dublin, Edinburgh, London, Lisbon, Monrovia",
! "+1" => "(GMT +1:00 hours) Berlin, Brussels, Copenhagen, Madrid, Paris, Rome",
! "+2" => "(GMT +2:00 hours) Kaliningrad, South Africa, Warsaw",
! "+3" => "(GMT +3:00 hours) Baghdad, Riyadh, Moscow, Nairobi",
! "+3.5" => "(GMT +3:30 hours) Tehran",
! "+4" => "(GMT +4:00 hours) Abu Dhabi, Baku, Muscat, Tbilisi",
! "+4.5" => "(GMT +4:30 hours) Kabul",
! "+5" => "(GMT +5:00 hours) Ekaterinburg, Islamabad, Karachi, Tashkent",
! "+5.5" => "(GMT +5:30 hours) Bombay, Calcutta, Madras, New Delhi",
! "+6" => "(GMT +6:00 hours) Almaty, Colombo, Dhaka",
! "+7" => "(GMT +7:00 hours) Bangkok, Hanoi, Jakarta",
! "+8" => "(GMT +8:00 hours) Beijing, Hong Kong, Perth, Singapore, Taipei",
! "+9" => "(GMT +9:00 hours) Osaka, Sapporo, Seoul, Tokyo, Yakutsk",
! "+9.5" => "(GMT +9:30 hours) Adelaide, Darwin",
! "+10" => "(GMT +10:00 hours) Melbourne, Papua New Guinea, Sydney, Vladivostok",
! "+11" => "(GMT +11:00 hours) Magadan, New Caledonia, Solomon Islands",
! "+12" => "(GMT +12:00 hours) Auckland, Wellington, Fiji, Marshall Island");
while( list($offset, $zone) = each($tz_array) )
--- 787,806 ----
"-1" => "(GMT -1:00 hours) Azores, Cape Verde Islands",
"0" => "(GMT) Casablanca, Dublin, Edinburgh, London, Lisbon, Monrovia",
! "1" => "(GMT +1:00 hours) Berlin, Brussels, Copenhagen, Madrid, Paris, Rome",
! "2" => "(GMT +2:00 hours) Kaliningrad, South Africa, Warsaw",
! "3" => "(GMT +3:00 hours) Baghdad, Riyadh, Moscow, Nairobi",
! "3.5" => "(GMT +3:30 hours) Tehran",
! "4" => "(GMT +4:00 hours) Abu Dhabi, Baku, Muscat, Tbilisi",
! "4.5" => "(GMT +4:30 hours) Kabul",
! "5" => "(GMT +5:00 hours) Ekaterinburg, Islamabad, Karachi, Tashkent",
! "5.5" => "(GMT +5:30 hours) Bombay, Calcutta, Madras, New Delhi",
! "6" => "(GMT +6:00 hours) Almaty, Colombo, Dhaka",
! "7" => "(GMT +7:00 hours) Bangkok, Hanoi, Jakarta",
! "8" => "(GMT +8:00 hours) Beijing, Hong Kong, Perth, Singapore, Taipei",
! "9" => "(GMT +9:00 hours) Osaka, Sapporo, Seoul, Tokyo, Yakutsk",
! "9.5" => "(GMT +9:30 hours) Adelaide, Darwin",
! "10" => "(GMT +10:00 hours) Melbourne, Papua New Guinea, Sydney, Vladivostok",
! "11" => "(GMT +11:00 hours) Magadan, New Caledonia, Solomon Islands",
! "12" => "(GMT +12:00 hours) Auckland, Wellington, Fiji, Marshall Island");
while( list($offset, $zone) = each($tz_array) )
Index: page_header.php
===================================================================
RCS file: /cvsroot/phpbb/phpBB2/includes/page_header.php,v
retrieving revision 1.57
retrieving revision 1.58
diff -C2 -r1.57 -r1.58
*** page_header.php 2001/11/03 15:15:05 1.57
--- page_header.php 2001/11/03 21:49:01 1.58
***************
*** 76,80 ****
{
$u_login_logout = "login.$phpEx?logout=true";
! $l_login_logout = $lang['Logout'] . " : " . $userdata["username"] . "";
}
else
--- 76,80 ----
{
$u_login_logout = "login.$phpEx?logout=true";
! $l_login_logout = $lang['Logout'] . " [ " . $userdata["username"] . " ]";
}
else
***************
*** 246,249 ****
--- 246,251 ----
"S_CONTENT_DIRECTION" => $lang['DIRECTION'],
"S_CONTENT_ENCODING" => $lang['ENCODING'],
+ "S_CONTENT_DIR_LEFT" => $lang['LEFT'],
+ "S_CONTENT_DIR_RIGHT" => $lang['RIGHT'],
"S_TIMEZONE" => $lang['All_times'] . " " . $lang[$board_config['board_timezone']],
"S_LOGIN_ACTION" => append_sid("login.$phpEx"),
|