Changeset 19596 for trunk/wp-admin/options-general.php
- Timestamp:
- 12/14/2011 05:36:38 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/options-general.php
r19593 r19596 99 99 <tr valign="top"> 100 100 <th scope="row"><label for="blogdescription"><?php _e('Tagline') ?></label></th> 101 <td><input name="blogdescription" type="text" id="blogdescription" 101 <td><input name="blogdescription" type="text" id="blogdescription" value="<?php form_option('blogdescription'); ?>" class="regular-text" /> 102 102 <span class="description"><?php _e('In a few words, explain what this site is about.') ?></span></td> 103 103 </tr> … … 212 212 $message = $tr['isdst'] ? 213 213 __('Daylight saving time begins on: <code>%s</code>.') : 214 __('Standard time begins 214 __('Standard time begins on: <code>%s</code>.'); 215 215 // Add the difference between the current offset and the new offset to ts to get the correct transition time from date_i18n(). 216 216 printf( $message, date_i18n(get_option('date_format') . ' ' . get_option('time_format'), $tr['ts'] + ($tz_offset - $tr['offset']) ) );
Note: See TracChangeset
for help on using the changeset viewer.