Ticket #3183: 3183.diff
File 3183.diff, 1.6 KB (added by , 18 years ago) |
---|
-
wp-admin/admin-functions.php
784 784 <?php if ('private' == $post->post_status) _e(' - <strong>Private</strong>'); ?> 785 785 </td> 786 786 <td><?php the_author() ?></td> 787 <td><?php echo mysql2date( 'Y-m-d g:i a', $post->post_modified); ?></td>787 <td><?php echo mysql2date(get_option('date_format').' '.get_option('time_format'), $post->post_modified); ?></td> 788 788 <td><a href="<?php the_permalink(); ?>" rel="permalink" class="edit"><?php _e('View'); ?></a></td> 789 789 <td><?php if ( current_user_can('edit_page', $id) ) { echo "<a href='page.php?action=edit&post=$id' class='edit'>" . __('Edit') . "</a>"; } ?></td> 790 790 <td><?php if ( current_user_can('delete_page', $id) ) { echo "<a href='" . wp_nonce_url("page.php?action=delete&post=$id", 'delete-page_' . $id) . "' class='delete' onclick=\"return deleteSomething( 'page', " . $id . ", '" . sprintf(__("You are about to delete the "%s" page.\\n"OK" to delete, "Cancel" to stop."), js_escape(get_the_title()) ) . "' );\">" . __('Delete') . "</a>"; } ?></td> -
wp-admin/edit.php
175 175 176 176 case 'date': 177 177 ?> 178 <td><?php the_time( 'Y-m-d \<\b\r \/\> g:i:s a'); ?></td>178 <td><?php the_time(get_option('date_format').'\<\b\r \/\>'.get_option('time_format')); ?></td> 179 179 <?php 180 180 break; 181 181 case 'title':