Make WordPress Core

Changeset 34368


Ignore:
Timestamp:
09/21/2015 11:12:35 PM (9 years ago)
Author:
DrewAPicture
Message:

Docs: Move a duplicate hook comment accidentally left behind when its corresponding filter was relocated in [31765].

See #31443. See #32246.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-walker-category-checklist.php

    r34241 r34368  
    8484        $args['selected_cats'] = empty( $args['selected_cats'] ) ? array() : $args['selected_cats'];
    8585
    86         /** This filter is documented in wp-includes/category-template.php */
    8786        if ( ! empty( $args['list_only'] ) ) {
    8887            $aria_cheched = 'false';
     
    9493            }
    9594
     95            /** This filter is documented in wp-includes/category-template.php */
    9696            $output .= "\n" . '<li' . $class . '>' .
    9797                '<div class="' . $inner_class . '" data-term-id=' . $category->term_id .
     
    9999                esc_html( apply_filters( 'the_category', $category->name ) ) . '</div>';
    100100        } else {
     101            /** This filter is documented in wp-includes/category-template.php */
    101102            $output .= "\n<li id='{$taxonomy}-{$category->term_id}'$class>" .
    102103                '<label class="selectit"><input value="' . $category->term_id . '" type="checkbox" name="'.$name.'[]" id="in-'.$taxonomy.'-' . $category->term_id . '"' .
Note: See TracChangeset for help on using the changeset viewer.