Make WordPress Core


Ignore:
Timestamp:
03/11/2008 07:23:07 AM (18 years ago)
Author:
matt
Message:

Visual and English tweaks throughout.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/edit-comments.php

    r7184 r7230  
    109109    $status_links[] = "<li><a href=\"edit-comments.php?comment_status=$status\"$class>" . $label . '</a>';
    110110}
     111
     112$status_links = apply_filters( 'comment_status_links', $status_links );
     113
    111114echo implode(' | </li>', $status_links) . '</li>';
    112115unset($status_links);
     
    215218<div id="ajax-response"></div>
    216219<?php
    217 } else {
     220} elseif ( 'moderated' == $_GET['comment_status'] ) {
    218221?>
    219222<p>
    220 <strong><?php _e('No results found.') ?></strong>
     223<?php _e('No comments awaiting moderation&hellip; yet.') ?>
     224</p>
     225<?php
     226} else  {
     227?>
     228<p>
     229<?php _e('No results found.') ?>
    221230</p>
    222231<?php
Note: See TracChangeset for help on using the changeset viewer.