Ticket #5774: r6735_date.diff
File r6735_date.diff, 1.2 KB (added by , 17 years ago) |
---|
-
wp-admin/edit-form-advanced.php
133 133 else 134 134 $time = __('Saved on:<br />%1$s at %2$s'); 135 135 ?> 136 <p><?php printf($time, mysql2date(get_option('date_format'), $post->post_ date), mysql2date(get_option('time_format'), $post->post_date)); ?>136 <p><?php printf($time, mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified)); ?> 137 137 <?php endif; ?> 138 138 </div> 139 139 -
wp-admin/edit-page-form.php
98 98 else 99 99 $time = __('Saved on:<br />%1$s at %2$s'); 100 100 ?> 101 <p><?php printf($time, mysql2date(get_option('date_format'), $post->post_ date), mysql2date(get_option('time_format'), $post->post_date)); ?>101 <p><?php printf($time, mysql2date(get_option('date_format'), $post->post_modified), mysql2date(get_option('time_format'), $post->post_modified)); ?> 102 102 <?php endif; ?> 103 103 </div> 104 104