diff --git a/wp-includes/class-wp-customize-manager.php b/wp-includes/class-wp-customize-manager.php index 0baf2bc178..a61292732e 100644 --- a/wp-includes/class-wp-customize-manager.php +++ b/wp-includes/class-wp-customize-manager.php @@ -117,10 +117,10 @@ final class WP_Customize_Manager { * Return true if it's an AJAX request. * * @since 3.4.0 - * @since 4.2.0 Added $action param. + * @since 4.2.0 Added `$action` param. * - * @param string|null $action whether the supplied Ajax action is being run. - * @return bool + * @param string|null $action Whether the supplied AJAX action is being run. + * @return bool True if it's an AJAX request, false otherwise. */ public function doing_ajax( $action = null ) { $doing_ajax = ( defined( 'DOING_AJAX' ) && DOING_AJAX ); @@ -131,7 +131,10 @@ final class WP_Customize_Manager { if ( ! $action ) { return true; } else { - // Note: we can't just use doing_action( "wp_ajax_{$action}" ) because we need to check before admin-ajax.php gets to that point + /* + * Note: we can't just use doing_action( "wp_ajax_{$action}" ) because we need + * to check before admin-ajax.php gets to that point. + */ return isset( $_REQUEST['action'] ) && wp_unslash( $_REQUEST['action'] ) === $action; } } diff --git a/wp-includes/version.php b/wp-includes/version.php index 6502022d49..d194d4ad2f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-beta4-32029'; +$wp_version = '4.2-beta4-32030'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.