Make WordPress Core


Ignore:
File:
1 edited

Legend:

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

    r15295 r15132  
    240240        $link = add_query_arg( 's', esc_attr( stripslashes( $_GET['s'] ) ), $link );
    241241    */
    242     if ( isset( $label[2] ) )
    243         $translated_label = _nx( $label[0], $label[1], $num_comments->$status, $label[2] );
    244     else
    245         $translated_label = _n( $label[0], $label[1], $num_comments->$status );
    246     $status_links[] = "<li class='$status'><a href='$link'$class>" . sprintf(
    247         $translated_label,
     242    $status_links[] = "<li class='$status'><a href='$link'$class>" . sprintf(
     243        _n( $label[0], $label[1], $num_comments->$status ),
    248244        number_format_i18n( $num_comments->$status )
    249245    ) . '</a>';
Note: See TracChangeset for help on using the changeset viewer.