Make WordPress Core


Ignore:
Timestamp:
03/18/2009 02:43:45 AM (17 years ago)
Author:
ryan
Message:

Trim trailing whitespace

File:
1 edited

Legend:

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

    r10770 r10810  
    9494</tr>
    9595<tr>
    96 <?php 
    97 if (!wp_timezone_supported()) : // no magic timezone support here 
     96<?php
     97if (!wp_timezone_supported()) : // no magic timezone support here
    9898?>
    9999<th scope="row"><label for="gmt_offset"><?php _e('Timezone') ?> </label></th>
     
    131131<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>
    132132</td>
    133 <?php 
     133<?php
    134134else: // looks like we can do nice timezone selection!
    135135$current_offset = get_option('gmt_offset');
     
    159159    <br />
    160160    <?php
    161     if (function_exists('timezone_transitions_get') && $tzstring) { 
     161    if (function_exists('timezone_transitions_get') && $tzstring) {
    162162        $dateTimeZoneSelected = new DateTimeZone($tzstring);
    163163        foreach (timezone_transitions_get($dateTimeZoneSelected) as $tr) {
     
    167167            }
    168168        }
    169    
     169
    170170        if ($found) {
    171171            _e(' ');
Note: See TracChangeset for help on using the changeset viewer.