Changeset 11648
- Timestamp:
- 06/26/2009 12:52:08 PM (15 years ago)
- Location:
- branches/2.8
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2.8/wp-admin/wp-admin.css
r11646 r11648 436 436 #wpcontent option { 437 437 padding: 2px; 438 } 439 440 #timezone_string option { 441 margin-left: 1em; 438 442 } 439 443 -
branches/2.8/wp-includes/functions.php
r11635 r11648 3301 3301 $display = strtr( $display, '+-', '-+' ) . ':00'; 3302 3302 } 3303 $display = ' ' .sprintf( __( 'UTC %s' ), $display );3303 $display = sprintf( __( 'UTC %s' ), $display ); 3304 3304 } else { 3305 $display = ' ' .$zone['t_city'];3305 $display = $zone['t_city']; 3306 3306 if ( !empty( $zone['subcity'] ) ) { 3307 3307 // Add the subcity to the value
Note: See TracChangeset
for help on using the changeset viewer.