Ticket #26736: includes.patch
File includes.patch, 922 bytes (added by , 11 years ago) |
---|
-
meta-boxes.php
151 151 </div><!-- .misc-pub-section --> 152 152 153 153 <?php 154 // translators: Publish box date format, see http://php.net/date 155 $datef = __( 'M j, Y @ G:i' ); 154 $datef = sprintf('%s %s', get_option('date_format'), get_option('time_format') ); 156 155 if ( 0 != $post->ID ) { 157 156 if ( 'future' == $post->post_status ) { // scheduled for publishing at a future date 158 157 $stamp = __('Scheduled for: <b>%1$s</b>'); … … 273 272 274 273 <div id="misc-publishing-actions"> 275 274 <?php 276 // translators: Publish box date format, see http://php.net/date 277 $datef = __( 'M j, Y @ G:i' ); 275 $datef = sprintf('%s %s', get_option('date_format'), get_option('time_format') ); 278 276 $stamp = __('Uploaded on: <b>%1$s</b>'); 279 277 $date = date_i18n( $datef, strtotime( $post->post_date ) ); 280 278 ?>