Use CSS instead of nbsp, props demetris, fixes #10206 for trunk
git-svn-id: https://develop.svn.wordpress.org/trunk@11649 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
8fb6081b5b
commit
7dcd5e4673
@ -437,6 +437,10 @@ a.button-secondary {
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
#timezone_string option {
|
||||
margin-left: 1em;
|
||||
}
|
||||
|
||||
.approve {
|
||||
display: none;
|
||||
}
|
||||
|
@ -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'];
|
||||
|
Loading…
Reference in New Issue
Block a user