Update of /cvsroot/phpmp/phpMP/includes
In directory sc8-pr-cvs1:/tmp/cvs-serv18022/includes
Modified Files:
constants.php
Log Message:
Double quotes magically become... uh, single quotes.
Index: constants.php
===================================================================
RCS file: /cvsroot/phpmp/phpMP/includes/constants.php,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -r1.22 -r1.23
*** constants.php 29 Jun 2003 08:19:55 -0000 1.22
--- constants.php 30 Jun 2003 04:05:37 -0000 1.23
***************
*** 23,76 ****
*/
! define("ACTIVATE_DISABLED", 0);
! define("ACTIVATE_USER", 1);
! define("ACTIVATE_ADMIN", 2);
! define("ANONYMOUS", 1);
! define("AUTH_LVL_GUEST", 0); // Guest.
! define("AUTH_LVL_MEM", 1); // Standard Member
! define("AUTH_LVL_CONTRIB", 2); // Contributor
! define("AUTH_LVL_MOD", 3); // Moderator
! define("AUTH_LVL_ADMIN", 4); // Administrator
! define("SESS_LOC_COOKIE", 1); //Sessions stored in cookie.
! define("SESS_LOC_URL", 2); //Sessions stored in URL.
// Timezones according to Windows. Probably wrong, but hey..
! define("GMT_MINUS_12", -12); // International Date Line West.
! define("GMT_MINUS_11", -11); // Midway Island, Simoa.
! define("GMT_MINUS_10", -10); // Hawaii.
! define("GMT_MINUS_9", -9); // Alaska.
! define("GMT_MINUS_8", -8); // Pacific Time.
! define("GMT_MINUS_7", -7); // Arizona, Mountain Time.
! define("GMT_MINUS_6", -6); // Central Time.
! define("GMT_MINUS_5", -5); // Eastern Time.
! define("GMT_MINUS_4", -4); // Atlantic Time.
! define("GMT_MINUS_3_30", -3.5); // Newfoundland.
! define("GMT_MINUS_3", -3); // Greenland.
! define("GMT_MINUS_2", -2); // Mid-Atlantic.
! define("GMT_MINUS_1", -1); // Cape Verda Is.
! define("GMT", 0); // Greenwich Mean Time.
! define("GMT_PLUS_1", 1); // Paris.
! define("GMT_PLUS_2", 2); // Jerusalem.
! define("GMT_PLUS_3", 3); // Moscow.
! define("GMT_PLUS_4", 4); // Abu Dhabi.
! define("GMT_PLUS_4_30", 4.5); // Kabul.
! define("GMT_PLUS_5", 5); // Karachi.
! define("GMT_PLUS_5_30", 5.5); // New Delhi.
! define("GMT_PLUS_6", 6); // Almaty.
! define("GMT_PLUS_6_30", 6.5); // Rangoon.
! define("GMT_PLUS_7", 7); // Bangkok.
! define("GMT_PLUS_8", 8); // Beijing.
! define("GMT_PLUS_9", 9); // Tokyo.
! define("GMT_PLUS_19_30", 9.5); // Adelaide.
! define("GMT_PLUS_10", 10); // Brisbane.
! define("GMT_PLUS_11", 11); // Solomon Is.
! define("GMT_PLUS_12", 12); // Auckland.
! define("GMT_PLUS_13", 13); // Nuku'alofa.
! define("DEBUG_ON", 1);
! //define("DEBUG_ON", 0);
?>
--- 23,76 ----
*/
! define('ACTIVATE_DISABLED', 0);
! define('ACTIVATE_USER', 1);
! define('ACTIVATE_ADMIN', 2);
! define('ANONYMOUS', 1);
! define('AUTH_LVL_GUEST', 0); // Guest.
! define('AUTH_LVL_MEM', 1); // Standard Member
! define('AUTH_LVL_CONTRIB', 2); // Contributor
! define('AUTH_LVL_MOD', 3); // Moderator
! define('AUTH_LVL_ADMIN', 4); // Administrator
! define('SESS_LOC_COOKIE', 1); //Sessions stored in cookie.
! define('SESS_LOC_URL', 2); //Sessions stored in URL.
// Timezones according to Windows. Probably wrong, but hey..
! define('GMT_MINUS_12', -12); // International Date Line West.
! define('GMT_MINUS_11', -11); // Midway Island, Simoa.
! define('GMT_MINUS_10', -10); // Hawaii.
! define('GMT_MINUS_9', -9); // Alaska.
! define('GMT_MINUS_8', -8); // Pacific Time.
! define('GMT_MINUS_7', -7); // Arizona, Mountain Time.
! define('GMT_MINUS_6', -6); // Central Time.
! define('GMT_MINUS_5', -5); // Eastern Time.
! define('GMT_MINUS_4', -4); // Atlantic Time.
! define('GMT_MINUS_3_30', -3.5); // Newfoundland.
! define('GMT_MINUS_3', -3); // Greenland.
! define('GMT_MINUS_2', -2); // Mid-Atlantic.
! define('GMT_MINUS_1', -1); // Cape Verda Is.
! define('GMT', 0); // Greenwich Mean Time.
! define('GMT_PLUS_1', 1); // Paris.
! define('GMT_PLUS_2', 2); // Jerusalem.
! define('GMT_PLUS_3', 3); // Moscow.
! define('GMT_PLUS_4', 4); // Abu Dhabi.
! define('GMT_PLUS_4_30', 4.5); // Kabul.
! define('GMT_PLUS_5', 5); // Karachi.
! define('GMT_PLUS_5_30', 5.5); // New Delhi.
! define('GMT_PLUS_6', 6); // Almaty.
! define('GMT_PLUS_6_30', 6.5); // Rangoon.
! define('GMT_PLUS_7', 7); // Bangkok.
! define('GMT_PLUS_8', 8); // Beijing.
! define('GMT_PLUS_9', 9); // Tokyo.
! define('GMT_PLUS_19_30', 9.5); // Adelaide.
! define('GMT_PLUS_10', 10); // Brisbane.
! define('GMT_PLUS_11', 11); // Solomon Is.
! define('GMT_PLUS_12', 12); // Auckland.
! define('GMT_PLUS_13', 13); // Nuku'alofa.
! define('DEBUG_ON', 1);
! //define('DEBUG_ON', 0);
?>
|