mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-08-12 04:40:26 +00:00
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:
@@ -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'];
|
||||
|
||||
Reference in New Issue
Block a user