Make WordPress Core


Ignore:
Timestamp:
10/19/2008 12:38:29 AM (17 years ago)
Author:
ryan
Message:

Consolidate *backs filter. Preserve filter settings when filetering by post. Props Viper007Bond. fixes #7920

File:
1 edited

Legend:

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

    r9233 r9247  
    158158    <option value="all"><?php _e('Show all comment types'); ?></option>
    159159<?php
    160     $comment_types = array(
     160    $comment_types = apply_filters( 'admin_comment_types_dropdown', array(
    161161        'comment' => __('Comments'),
    162         'pingback' => __('Pingbacks'),
    163         'trackback' => __('Trackbacks'),
    164     );
     162        'pings' => __('Pings'),
     163    ) );
    165164
    166165    foreach ( $comment_types as $type => $label ) {
Note: See TracChangeset for help on using the changeset viewer.