Make WordPress Core

Changeset 11648


Ignore:
Timestamp:
06/26/2009 12:52:08 PM (15 years ago)
Author:
azaozz
Message:

Use CSS instead of nbsp, props demetris, fixes #10206 for 2.8

Location:
branches/2.8
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/2.8/wp-admin/wp-admin.css

    r11646 r11648  
    436436#wpcontent option {
    437437    padding: 2px;
     438}
     439
     440#timezone_string option {
     441    margin-left: 1em;
    438442}
    439443
  • branches/2.8/wp-includes/functions.php

    r11635 r11648  
    33013301                    $display = strtr( $display, '+-', '-+' ) . ':00';
    33023302                }
    3303                 $display = '   ' . sprintf( __( 'UTC %s' ), $display );
     3303                $display = sprintf( __( 'UTC %s' ), $display );
    33043304            } else {
    3305                 $display = '   ' . $zone['t_city'];
     3305                $display = $zone['t_city'];
    33063306                if ( !empty( $zone['subcity'] ) ) {
    33073307                    // Add the subcity to the value
Note: See TracChangeset for help on using the changeset viewer.