Make WordPress Core


Ignore:
Timestamp:
07/05/2019 01:44:41 AM (5 years ago)
Author:
pento
Message:

Coding Standards: Mark the handful of hook names with uppercase characters or hyphens as ignored.

See #47632.

File:
1 edited

Legend:

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

    r45140 r45599  
    202202        $tags = (array) $_REQUEST['delete_tags'];
    203203        /** This action is documented in wp-admin/edit-comments.php */
    204         $location = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $location, $wp_list_table->current_action(), $tags );
     204        $location = apply_filters( 'handle_bulk_actions-' . get_current_screen()->id, $location, $wp_list_table->current_action(), $tags );  // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
    205205        break;
    206206}
     
    614614 * @param string $taxonomy The taxonomy name.
    615615 */
    616 do_action( "after-{$taxonomy}-table", $taxonomy );
     616do_action( "after-{$taxonomy}-table", $taxonomy );  // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
    617617
    618618if ( $can_edit_terms ) {
Note: See TracChangeset for help on using the changeset viewer.