Changeset 2752:7d39039a8914 for admin/install
- Timestamp:
- 09/23/14 09:07:39 (11 years ago)
- Branch:
- default
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
admin/install/index.php
r2507 r2752 97 97 if ($_tz instanceof DateTimeZone) { 98 98 $_tz = @timezone_name_get($_tz); 99 if ($_tz) { 99 100 // check if timezone is valid 101 // date_default_timezone_set throw E_NOTICE and/or E_WARNING if timezone is not valid and return false 102 if (@date_default_timezone_set($_tz)!==false && $_tz) { 100 103 $default_tz = $_tz; 101 104 }
Note: See TracChangeset
for help on using the changeset viewer.