From 92d8f4afdc28a3088f76492806e4c4ea8850049a Mon Sep 17 00:00:00 2001 From: Scott Taylor Date: Mon, 22 Aug 2016 04:47:19 +0000 Subject: [PATCH] Login: `retrieve_password()` does not need to import 2 globals that it does not use. See #37699. git-svn-id: https://develop.svn.wordpress.org/trunk@38304 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-login.php | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/wp-login.php b/src/wp-login.php index 01c754f00d..2d02ed2248 100644 --- a/src/wp-login.php +++ b/src/wp-login.php @@ -285,14 +285,9 @@ function wp_login_viewport_meta() { /** * Handles sending password retrieval email to user. * - * @global wpdb $wpdb WordPress database abstraction object. - * @global PasswordHash $wp_hasher Portable PHP password hashing framework. - * * @return bool|WP_Error True: when finish. WP_Error on error */ function retrieve_password() { - global $wpdb, $wp_hasher; - $errors = new WP_Error(); if ( empty( $_POST['user_login'] ) ) {