Make WordPress Core


Ignore:
Timestamp:
09/26/2010 09:37:25 AM (14 years ago)
Author:
nacin
Message:

Add missing 'Moderate Comment' $title to comment.php. props MattyRob, fixes #14139.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/comment.php

    r15596 r15665  
    7878case 'spam'    :
    7979
     80    $title = __('Moderate Comment');
     81
    8082    $comment_id = absint( $_GET['c'] );
    8183
     
    108110
    109111<?php screen_icon(); ?>
    110 <h2><?php esc_html_e( 'Moderate Comment' ); ?></h2>
     112<h2><?php esc_html( $title ); ?></h2>
    111113
    112114<?php
Note: See TracChangeset for help on using the changeset viewer.