Ticket #31852: 31852.patch
| File 31852.patch, 1.7 KB (added by , 11 years ago) |
|---|
-
wp-admin/options-general.php
161 161 $new_admin_email = get_option( 'new_admin_email' ); 162 162 if ( $new_admin_email && $new_admin_email != get_option('admin_email') ) : ?> 163 163 <div class="updated inline"> 164 <p><?php printf( __('There is a pending change of the admin e-mail to <code>%1$s</code>. <a href="%2$s">Cancel</a>'), esc_html( $new_admin_email ), esc_url( admin_url( 'options.php?dismiss=new_admin_email' ) ) ); ?></p>164 <p><?php printf( __('There is a pending change of the admin e-mail to %1$s. <a href="%2$s">Cancel</a>'), '<code>' . esc_html( $new_admin_email ) . '</code>', esc_url( admin_url( 'options.php?dismiss=new_admin_email' ) ) ); ?></p> 165 165 </div> 166 166 <?php endif; ?> 167 167 </td> … … 196 196 <?php echo wp_timezone_choice($tzstring); ?> 197 197 </select> 198 198 199 <span id="utc-time"><?php printf(__('<abbr title="Coordinated Universal Time">UTC</abbr> time is <code>%s</code>'), date_i18n($timezone_format, false, 'gmt')); ?></span>199 <span id="utc-time"><?php printf(__('<abbr title="Coordinated Universal Time">UTC</abbr> time is %s'), '<code>' . date_i18n($timezone_format, false, 'gmt') . '</code>' ); ?></span> 200 200 <?php if ( get_option('timezone_string') || !empty($current_offset) ) : ?> 201 <span id="local-time"><?php printf(__('Local time is <code>%1$s</code>'), date_i18n($timezone_format)); ?></span>201 <span id="local-time"><?php printf(__('Local time is %s'), '<code>' . date_i18n($timezone_format) . '</code>' ); ?></span> 202 202 <?php endif; ?> 203 203 <p class="description"><?php _e('Choose a city in the same timezone as you.'); ?></p> 204 204 <?php if ($check_zone_info && $tzstring) : ?>