From 3b267afbf431739baf945e1b2f4367cf17330b94 Mon Sep 17 00:00:00 2001 From: Drew Jaynes <info@drewapicture.com> Date: Wed, 4 Mar 2015 09:51:26 +0000 Subject: [PATCH] Correct a typo in the hash notation for `wp_insert_user()`: The argument name should be `$user_registered` not `$date_registered`. Props floriansimeth. Fixes #31513. Built from https://develop.svn.wordpress.org/trunk@31608 git-svn-id: http://core.svn.wordpress.org/trunk@31589 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/user.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/user.php b/wp-includes/user.php index 46088fef04..030f6bdcab 100644 --- a/wp-includes/user.php +++ b/wp-includes/user.php @@ -1702,7 +1702,7 @@ function validate_username( $username ) { * to build $display_name if unspecified. * @type string|bool $rich_editing Whether to enable the rich-editor for the user. False * if not empty. - * @type string $date_registered Date the user registered. Format is 'Y-m-d H:i:s'. + * @type string $user_registered Date the user registered. Format is 'Y-m-d H:i:s'. * @type string $role User's role. * @type string $jabber User's Jabber account username. * @type string $aim User's AIM account username. diff --git a/wp-includes/version.php b/wp-includes/version.php index 45a3f105de..688a78c687 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.2-alpha-31607'; +$wp_version = '4.2-alpha-31608'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.