From cfc06de3038df01d7ade48b5d658f89c4dd09a02 Mon Sep 17 00:00:00 2001 From: ryan Date: Tue, 22 Mar 2005 01:09:39 +0000 Subject: [PATCH] s/retreive/retrieve/ http://mosquito.wordpress.org/view.php?id=1071 git-svn-id: http://svn.automattic.com/wordpress/trunk@2465 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-login.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/wp-login.php b/wp-login.php index 14e7ca774..38131c8ea 100644 --- a/wp-login.php +++ b/wp-login.php @@ -95,7 +95,8 @@ case 'retrievepassword': if (!$user_email || $user_email != $_POST['email']) die(sprintf(__('Sorry, that user does not seem to exist in our database. Perhaps you have the wrong username or e-mail address? Try again.'), 'wp-login.php?action=lostpassword')); - do_action('retreive_password', $user_login); +do_action('retreive_password', $user_login); // Misspelled and deprecated. +do_action('retrieve_password', $user_login); // Generate something random for a password... md5'ing current time with a rand salt $key = substr( md5( uniqid( microtime() ) ), 0, 50);