Coding Standards: Correct the number of accepted arguments in `add_action()` calls in `wp-includes/default-filters.php` for functions that don't accept any arguments.
Props itowhid06, johnbillion, jrf. Fixes #48123. Built from https://develop.svn.wordpress.org/trunk@46432 git-svn-id: http://core.svn.wordpress.org/trunk@46230 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
ddcf1fb843
commit
bcd399918f
|
@ -331,11 +331,11 @@ if ( ! defined( 'DOING_CRON' ) ) {
|
|||
}
|
||||
|
||||
// 2 Actions 2 Furious
|
||||
add_action( 'do_feed_rdf', 'do_feed_rdf', 10, 1 );
|
||||
add_action( 'do_feed_rss', 'do_feed_rss', 10, 1 );
|
||||
add_action( 'do_feed_rdf', 'do_feed_rdf', 10, 0 );
|
||||
add_action( 'do_feed_rss', 'do_feed_rss', 10, 0 );
|
||||
add_action( 'do_feed_rss2', 'do_feed_rss2', 10, 1 );
|
||||
add_action( 'do_feed_atom', 'do_feed_atom', 10, 1 );
|
||||
add_action( 'do_pings', 'do_all_pings', 10, 1 );
|
||||
add_action( 'do_pings', 'do_all_pings', 10, 0 );
|
||||
add_action( 'do_robots', 'do_robots' );
|
||||
add_action( 'set_comment_cookies', 'wp_set_comment_cookies', 10, 3 );
|
||||
add_action( 'sanitize_comment_cookies', 'sanitize_comment_cookies' );
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.3-beta2-46431';
|
||||
$wp_version = '5.3-beta2-46432';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue