Changeset 2180
- Timestamp:
- 06/14/2009 08:52:44 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/bb-admin/options-general.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/bb-admin/options-general.php
r2179 r2180 156 156 } elseif ( $_gmt_offset > 0 ) { 157 157 // Zoneinfo has these signed backwards to common convention 158 $timezone_string = 'Etc/GMT-' . $_gmt_offset;158 $timezone_string = 'Etc/GMT-' . abs( $_gmt_offset ); 159 159 } else { 160 160 // Zoneinfo has these signed backwards to common convention 161 $timezone_string = 'Etc/GMT+' . $_gmt_offset;161 $timezone_string = 'Etc/GMT+' . abs( $_gmt_offset ); 162 162 } 163 163 unset( $_gmt_offset );
Note: See TracChangeset
for help on using the changeset viewer.