Changeset 7230 for trunk/wp-admin/edit-comments.php
- Timestamp:
- 03/11/2008 07:23:07 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-comments.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-comments.php
r7184 r7230 109 109 $status_links[] = "<li><a href=\"edit-comments.php?comment_status=$status\"$class>" . $label . '</a>'; 110 110 } 111 112 $status_links = apply_filters( 'comment_status_links', $status_links ); 113 111 114 echo implode(' | </li>', $status_links) . '</li>'; 112 115 unset($status_links); … … 215 218 <div id="ajax-response"></div> 216 219 <?php 217 } else {220 } elseif ( 'moderated' == $_GET['comment_status'] ) { 218 221 ?> 219 222 <p> 220 <strong><?php _e('No results found.') ?></strong> 223 <?php _e('No comments awaiting moderation… yet.') ?> 224 </p> 225 <?php 226 } else { 227 ?> 228 <p> 229 <?php _e('No results found.') ?> 221 230 </p> 222 231 <?php
Note: See TracChangeset
for help on using the changeset viewer.