Make WordPress Core


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

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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • 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.