Make WordPress Core

Changeset 11649


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

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

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/wp-admin.css

    r11647 r11649  
    438438}
    439439
     440#timezone_string option {
     441    margin-left: 1em;
     442}
     443
    440444.approve {
    441445    display: none;
  • trunk/wp-includes/functions.php

    r11634 r11649  
    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.