Changeset 11649
- Timestamp:
- 06/26/2009 12:56:24 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/wp-admin.css
r11647 r11649 438 438 } 439 439 440 #timezone_string option { 441 margin-left: 1em; 442 } 443 440 444 .approve { 441 445 display: none; -
trunk/wp-includes/functions.php
r11634 r11649 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.