Changeset 10810 for trunk/wp-admin/options-general.php
- Timestamp:
- 03/18/2009 02:43:45 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/options-general.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-general.php
r10770 r10810 94 94 </tr> 95 95 <tr> 96 <?php 97 if (!wp_timezone_supported()) : // no magic timezone support here 96 <?php 97 if (!wp_timezone_supported()) : // no magic timezone support here 98 98 ?> 99 99 <th scope="row"><label for="gmt_offset"><?php _e('Timezone') ?> </label></th> … … 131 131 <span class="setting-description"><?php _e('Unfortunately, you have to manually update this for Daylight Savings Time. Lame, we know, but will be fixed in the future.'); ?></span> 132 132 </td> 133 <?php 133 <?php 134 134 else: // looks like we can do nice timezone selection! 135 135 $current_offset = get_option('gmt_offset'); … … 159 159 <br /> 160 160 <?php 161 if (function_exists('timezone_transitions_get') && $tzstring) { 161 if (function_exists('timezone_transitions_get') && $tzstring) { 162 162 $dateTimeZoneSelected = new DateTimeZone($tzstring); 163 163 foreach (timezone_transitions_get($dateTimeZoneSelected) as $tr) { … … 167 167 } 168 168 } 169 169 170 170 if ($found) { 171 171 _e(' ');
Note: See TracChangeset
for help on using the changeset viewer.