From b993fdde39d622cabe97ba337a2cb08bf239f490 Mon Sep 17 00:00:00 2001 From: ryan Date: Fri, 25 Jan 2008 20:52:15 +0000 Subject: [PATCH] Don't assault Matt with password reset email. git-svn-id: http://svn.automattic.com/wordpress/trunk@6663 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 195405e17..4680eff28 100644 --- a/wp-login.php +++ b/wp-login.php @@ -121,7 +121,7 @@ function reset_password($key) { // but check to see if it's the admin whose password we're changing, and skip this if ( $user->user_email != get_option('admin_email') ) { $message = sprintf(__('Password Lost and Changed for user: %s'), $user->user_login) . "\r\n"; - wp_mail(get_option('admin_email'), sprintf(__('[%s] Password Lost/Changed'), get_option('blogname')), $message); + //wp_mail(get_option('admin_email'), sprintf(__('[%s] Password Lost/Changed'), get_option('blogname')), $message); } return true;