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

git-svn-id: http://svn.automattic.com/wordpress/trunk@11649 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-06-26 12:56:24 +00:00
parent 64067f4612
commit ec0eadf2c4
2 changed files with 6 additions and 2 deletions

View File

@ -437,6 +437,10 @@ a.button-secondary {
padding: 2px;
}
#timezone_string option {
margin-left: 1em;
}
.approve {
display: none;
}

View File

@ -3300,9 +3300,9 @@ function wp_timezone_choice( $selected_zone ) {
$display = str_replace( 'GMT', '', $zone['city'] );
$display = strtr( $display, '+-', '-+' ) . ':00';
}
$display = '   ' . sprintf( __( 'UTC %s' ), $display );
$display = sprintf( __( 'UTC %s' ), $display );
} else {
$display = '   ' . $zone['t_city'];
$display = $zone['t_city'];
if ( !empty( $zone['subcity'] ) ) {
// Add the subcity to the value
$value[] = $zone['subcity'];