Make WordPress Core


Ignore:
Timestamp:
12/14/2011 05:36:38 PM (13 years ago)
Author:
ryan
Message:

Remove extraneous spaces. Props kenan3008, dimadin. fixes #19501 #19433

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/options-general.php

    r19593 r19596  
    9999<tr valign="top">
    100100<th scope="row"><label for="blogdescription"><?php _e('Tagline') ?></label></th>
    101 <td><input name="blogdescription" type="text" id="blogdescription"  value="<?php form_option('blogdescription'); ?>" class="regular-text" />
     101<td><input name="blogdescription" type="text" id="blogdescription" value="<?php form_option('blogdescription'); ?>" class="regular-text" />
    102102<span class="description"><?php _e('In a few words, explain what this site is about.') ?></span></td>
    103103</tr>
     
    212212            $message = $tr['isdst'] ?
    213213                __('Daylight saving time begins on: <code>%s</code>.') :
    214                 __('Standard time begins  on: <code>%s</code>.');
     214                __('Standard time begins on: <code>%s</code>.');
    215215            // Add the difference between the current offset and the new offset to ts to get the correct transition time from date_i18n().
    216216            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.