Code standards cleanup for wp-admin/options-general.php

git-svn-id: http://svn.automattic.com/wordpress/trunk@13606 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
dd32 2010-03-06 09:49:11 +00:00
parent cc8d80cd44
commit 7ac692af5f
1 changed files with 18 additions and 15 deletions

View File

@ -192,21 +192,24 @@ if (empty($tzstring)) { // Create a UTC+- zone if no timezone string exists
<span>
<?php
$now = localtime(time(), true);
if ($now['tm_isdst']) _e('This timezone is currently in daylight saving time.');
else _e('This timezone is currently in standard time.');
if ( $now['tm_isdst'] )
_e('This timezone is currently in daylight saving time.');
else
_e('This timezone is currently in standard time.');
?>
<br />
<?php
if ( function_exists('timezone_transitions_get') ) {
$dateTimeZoneSelected = new DateTimeZone($tzstring);
foreach (timezone_transitions_get($dateTimeZoneSelected) as $tr) {
$found = false;
$date_time_zone_selected = new DateTimeZone($tzstring);
foreach ( timezone_transitions_get($date_time_zone_selected) as $tr) {
if ( $tr['ts'] > time() ) {
$found = true;
break;
}
}
if ( isset($found) && $found === true ) {
if ( $found ) {
echo ' ';
$message = $tr['isdst'] ?
__('Daylight saving time begins on: <code>%s</code>.') :
@ -236,13 +239,13 @@ if (empty($tzstring)) { // Create a UTC+- zone if no timezone string exists
'd/m/Y',
) );
$custom = TRUE;
$custom = true;
foreach ( $date_formats as $format ) {
echo "\t<label title='" . esc_attr($format) . "'><input type='radio' name='date_format' value='" . esc_attr($format) . "'";
if ( get_option('date_format') === $format ) { // checked() uses "==" rather than "==="
echo " checked='checked'";
$custom = FALSE;
$custom = false;
}
echo ' /> ' . date_i18n( $format ) . "</label><br />\n";
}
@ -268,13 +271,13 @@ if (empty($tzstring)) { // Create a UTC+- zone if no timezone string exists
'H:i',
) );
$custom = TRUE;
$custom = true;
foreach ( $time_formats as $format ) {
echo "\t<label title='" . esc_attr($format) . "'><input type='radio' name='time_format' value='" . esc_attr($format) . "'";
if ( get_option('time_format') === $format ) { // checked() uses "==" rather than "==="
echo " checked='checked'";
$custom = FALSE;
$custom = false;
}
echo ' /> ' . date_i18n( $format ) . "</label><br />\n";
}