From 702019d5748fb9ba54eff58725762809552bd7c9 Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 23 Jul 2008 16:36:10 +0000 Subject: [PATCH] Fix case. fixes #7344 for trunk git-svn-id: http://svn.automattic.com/wordpress/trunk@8411 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-login.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-login.php b/wp-login.php index 559287f774..e1fa23b526 100644 --- a/wp-login.php +++ b/wp-login.php @@ -129,7 +129,7 @@ function retrieve_password() { do_action('retreive_password', $user_login); // Misspelled and deprecated do_action('retrieve_password', $user_login); - $allow = apply_filters('allow_password_reset', true, $user_data->id); + $allow = apply_filters('allow_password_reset', true, $user_data->ID); if ( ! $allow ) return new WP_Error('no_password_reset', __('Password reset is not allowed for this user'));