From 843489a8723fcefc64b5ecb159f6eb3b0b5fe7df Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 11 Mar 2009 15:46:16 +0000 Subject: [PATCH] Use full strings for i18n friendliness. Props nbachiyski. see #3962 git-svn-id: https://develop.svn.wordpress.org/trunk@10770 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/options-general.php | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/wp-admin/options-general.php b/wp-admin/options-general.php index 5b57c91456..5bab882427 100644 --- a/wp-admin/options-general.php +++ b/wp-admin/options-general.php @@ -152,11 +152,9 @@ if (empty($tzstring)) { // set the Etc zone if no timezone string exists %2$s'), get_option('timezone_string'), date_i18n(__('Y-m-d G:i:s'))); ?>

setTimezone($tz); - echo date_i18n(__('Y-m-d \a\t g:i a T'),$d->format('U')); + printf( $message, date_i18n(__('Y-m-d \a\t g:i a T'), $d->format('U') ) ); } else { _e('This timezone does not observe daylight savings time.'); }