Changeset 16121
- Timestamp:
- 10/31/2010 11:21:56 PM (15 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/list-table-posts.php
r16119 r16121 123 123 124 124 if ( isset( $_REQUEST['post_status'] ) && 'trash' == $_REQUEST['post_status'] ) 125 echo $post_type_object->labels->not_found_in_trash . '.';125 echo $post_type_object->labels->not_found_in_trash; 126 126 else 127 echo $post_type_object->labels->not_found . '.';127 echo $post_type_object->labels->not_found; 128 128 } 129 129 … … 314 314 global $post, $mode; 315 315 316 add_filter( 'the_title', 'esc_html' );316 add_filter( 'the_title', 'esc_html' ); 317 317 318 318 // Create array of post IDs. -
trunk/wp-includes/post.php
r16104 r16121 1141 1141 'view_item' => array( __('View Post'), __('View Page') ), 1142 1142 'search_items' => array( __('Search Posts'), __('Search Pages') ), 1143 'not_found' => array( __('No posts found '), __('No pages found') ),1144 'not_found_in_trash' => array( __('No posts found in Trash '), __('No pages found in Trash') ),1143 'not_found' => array( __('No posts found.'), __('No pages found.') ), 1144 'not_found_in_trash' => array( __('No posts found in Trash.'), __('No pages found in Trash.') ), 1145 1145 'parent_item_colon' => array( null, __('Parent Page:') ) 1146 1146 );
Note: See TracChangeset
for help on using the changeset viewer.