Skip to content

Commit

Permalink
Remove extraneous action priority
Browse files Browse the repository at this point in the history
  • Loading branch information
westonruter authored Oct 25, 2021
1 parent 9f3a80c commit c226596
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/validation/class-amp-validation-manager.php
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ static function() {

add_action( 'all_admin_notices', [ __CLASS__, 'print_plugin_notice' ] );
add_action( 'admin_bar_menu', [ __CLASS__, 'add_admin_bar_menu_items' ], 101 );
add_action( 'wp', [ __CLASS__, 'maybe_fail_validate_request' ], 10 );
add_action( 'wp', [ __CLASS__, 'maybe_fail_validate_request' ] );
add_action( 'wp', [ __CLASS__, 'maybe_send_cached_validate_response' ], 20 );
add_action( 'wp', [ __CLASS__, 'override_validation_error_statuses' ] );

Expand Down

0 comments on commit c226596

Please sign in to comment.