diff --git a/wp-includes/load.php b/wp-includes/load.php index 52453802c0..4c212086df 100644 --- a/wp-includes/load.php +++ b/wp-includes/load.php @@ -1132,12 +1132,12 @@ function shutdown_action_hook() { * @since 2.7.0 * @deprecated 3.2.0 * - * @param object $object The object to clone. + * @param object $input_object The object to clone. * @return object The cloned object. */ -function wp_clone( $object ) { +function wp_clone( $input_object ) { // Use parens for clone to accommodate PHP 4. See #17880. - return clone( $object ); + return clone( $input_object ); } /** diff --git a/wp-includes/version.php b/wp-includes/version.php index 6d8ecf430b..6624465ad3 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-alpha-54943'; +$wp_version = '6.2-alpha-54944'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.