Changes in trunk/wp-admin/edit-comments.php [18092:17345]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-comments.php
r18092 r17345 1 1 <?php 2 2 /** 3 * Edit Comments Administration Screen.3 * Edit Comments Administration Panel. 4 4 * 5 5 * @package WordPress … … 102 102 $wp_list_table->prepare_items(); 103 103 104 $total_pages = $wp_list_table->get_pagination_arg( 'total_pages' ); 105 if ( $pagenum > $total_pages && $total_pages > 0 ) { 106 wp_redirect( add_query_arg( 'paged', $total_pages ) ); 107 exit; 108 } 109 104 110 wp_enqueue_script('admin-comments'); 105 111 enqueue_comment_hotkeys_js(); … … 115 121 '<p>' . __( 'A yellow row means the comment is waiting for you to moderate it.' ) . '</p>' . 116 122 '<p>' . __( 'In the Author column, in addition to the author’s name, email address, and blog URL, the commenter’s IP address is shown. Clicking on this link will show you all the comments made from this IP address.' ) . '</p>' . 117 '<p>' . __( 'In the Comment column, above each comment it says “Submitted on,” followed by the date and time the comment was left on your site. Clicking on the date/time link will take you to that comment on your live site. Hovering over any comment gives you options to approve, reply (and approve), quick edit, edit, spam mark, or trash that comment.' ) . '</p>' .123 '<p>' . __( 'In the Comment column, above each comment it says “Submitted on,” followed by the date and time the comment was left on your site. Clicking on the date/time link will take you to that comment on your live site.' ) . '</p>' . 118 124 '<p>' . __( 'In the In Response To column, there are three elements. The text is the name of the post that inspired the comment, and links to the post editor for that entry. The “#” permalink symbol below leads to that post on your live site. The small bubble with the number in it shows how many comments that post has received. If the bubble is gray, you have moderated all comments for that post. If it is blue, there are pending comments. Clicking the bubble will filter the comments screen to show only comments on that post.' ) . '</p>' . 119 125 '<p>' . __( 'Many people take advantage of keyboard shortcuts to moderate their comments more quickly. Use the link below to learn more.' ) . '</p>' . 120 126 '<p><strong>' . __( 'For more information:' ) . '</strong></p>' . 121 '<p>' . __( '<a href="http://codex.wordpress.org/Administration_ Screens#Comments" target="_blank">Documentation on Comments</a>' ) . '</p>' .127 '<p>' . __( '<a href="http://codex.wordpress.org/Administration_Panels#Comments" target="_blank">Documentation on Comments</a>' ) . '</p>' . 122 128 '<p>' . __( '<a href="http://codex.wordpress.org/Comment_Spam" target="_blank">Documentation on Comment Spam</a>' ) . '</p>' . 123 129 '<p>' . __( '<a href="http://codex.wordpress.org/Keyboard_Shortcuts" target="_blank">Documentation on Keyboard Shortcuts</a>' ) . '</p>' .
Note: See TracChangeset
for help on using the changeset viewer.