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

git-svn-id: http://svn.automattic.com/wordpress/branches/2.8@11648 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
azaozz 2009-06-26 12:52:08 +00:00
parent 51b70185ba
commit 385af418f4
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'];