<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[15710] trunk/wp-login.php: Streamline password reset process.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/15710">15710</a></dd>
<dt>Author</dt> <dd>ryan</dd>
<dt>Date</dt> <dd>2010-10-04 15:32:54 +0000 (Mon, 04 Oct 2010)</dd>
</dl>

<h3>Log Message</h3>
<pre>Streamline password reset process. Allow user to input new password. Props scribu. see <a href="http://trac.wordpress.org/ticket/5919">#5919</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwploginphp">trunk/wp-login.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwploginphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-login.php (15709 => 15710)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-login.php        2010-10-04 14:17:34 UTC (rev 15709)
+++ trunk/wp-login.php        2010-10-04 15:32:54 UTC (rev 15710)
</span><span class="lines">@@ -115,6 +115,31 @@
</span><span class="cx">                         echo '&lt;p class=&quot;message&quot;&gt;' . apply_filters('login_messages', $messages) . &quot;&lt;/p&gt;\n&quot;;
</span><span class="cx">         }
</span><span class="cx"> } // End of login_header()
</span><ins>+
+/**
+ * Outputs the footer for the login page.
+ *
+ * @param string $input_id Which input to auto-focus
+ */
+function login_footer($input_id = '') {
+        echo &quot;&lt;/div&gt;\n&quot;;
+
+        if ( !empty($input_id) ) {
+?&gt;
+&lt;script type=&quot;text/javascript&quot;&gt;
+try{document.getElementById('&lt;?php echo $input_id; ?&gt;').focus();}catch(e){}
+if(typeof wpOnload=='function')wpOnload();
+&lt;/script&gt;
+&lt;?php
+        }
+?&gt;
+&lt;p id=&quot;backtoblog&quot;&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;/&quot; title=&quot;&lt;?php _e('Are you lost?') ?&gt;&quot;&gt;&lt;?php printf(__('&amp;larr; Back to %s'), get_bloginfo('title', 'display' )); ?&gt;&lt;/a&gt;&lt;/p&gt;
+
+&lt;/body&gt;
+&lt;/html&gt;
+&lt;?php
+}
+
</ins><span class="cx"> function wp_shake_js() {
</span><span class="cx">         global $is_iphone;
</span><span class="cx">         if ( $is_iphone )
</span><span class="lines">@@ -211,14 +236,16 @@
</span><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span><del>- * Handles resetting the user's password.
</del><ins>+ * Retrieves a user row based on password reset key and login
</ins><span class="cx">  *
</span><span class="cx">  * @uses $wpdb WordPress Database object
</span><span class="cx">  *
</span><span class="cx">  * @param string $key Hash to validate sending user's password
</span><del>- * @return bool|WP_Error
</del><ins>+ * @param string $login The user login
+ *
+ * @return object|WP_Error
</ins><span class="cx">  */
</span><del>-function reset_password($key, $login) {
</del><ins>+function check_password_reset_key($key, $login) {
</ins><span class="cx">         global $wpdb;
</span><span class="cx"> 
</span><span class="cx">         $key = preg_replace('/[^a-z0-9]/i', '', $key);
</span><span class="lines">@@ -230,38 +257,26 @@
</span><span class="cx">                 return new WP_Error('invalid_key', __('Invalid key'));
</span><span class="cx"> 
</span><span class="cx">         $user = $wpdb-&gt;get_row($wpdb-&gt;prepare(&quot;SELECT * FROM $wpdb-&gt;users WHERE user_activation_key = %s AND user_login = %s&quot;, $key, $login));
</span><ins>+
</ins><span class="cx">         if ( empty( $user ) )
</span><span class="cx">                 return new WP_Error('invalid_key', __('Invalid key'));
</span><ins>+                
+        return $user;
+}
</ins><span class="cx"> 
</span><del>-        // Generate something random for a password...
-        $new_pass = wp_generate_password();
-
</del><ins>+/**
+ * Handles resetting the user's password.
+ *
+ * @uses $wpdb WordPress Database object
+ *
+ * @param string $key Hash to validate sending user's password
+ */
+function reset_password($user, $new_pass) {
</ins><span class="cx">         do_action('password_reset', $user, $new_pass);
</span><span class="cx"> 
</span><span class="cx">         wp_set_password($new_pass, $user-&gt;ID);
</span><del>-        update_user_option($user-&gt;ID, 'default_password_nag', true, true); //Set up the Password change nag.
-        $message  = sprintf(__('Username: %s'), $user-&gt;user_login) . &quot;\r\n&quot;;
-        $message .= sprintf(__('Password: %s'), $new_pass) . &quot;\r\n&quot;;
-        $message .= site_url('wp-login.php', 'login') . &quot;\r\n&quot;;
</del><span class="cx"> 
</span><del>-        if ( is_multisite() )
-                $blogname = $GLOBALS['current_site']-&gt;site_name;
-        else
-                // The blogname option is escaped with esc_html on the way into the database in sanitize_option
-                // we want to reverse this for the plain text arena of emails.
-                $blogname = wp_specialchars_decode(get_option('blogname'), ENT_QUOTES);
-
-        $title = sprintf( __('[%s] Your new password'), $blogname );
-
-        $title = apply_filters('password_reset_title', $title);
-        $message = apply_filters('password_reset_message', $message, $new_pass);
-
-        if ( $message &amp;&amp; !wp_mail($user-&gt;user_email, $title, $message) )
-                  wp_die( __('The e-mail could not be sent.') . &quot;&lt;br /&gt;\n&quot; . __('Possible reason: your host may have disabled the mail() function...') );
-
</del><span class="cx">         wp_password_change_notification($user);
</span><del>-
-        return true;
</del><span class="cx"> }
</span><span class="cx"> 
</span><span class="cx"> /**
</span><span class="lines">@@ -398,39 +413,60 @@
</span><span class="cx"> &lt;/form&gt;
</span><span class="cx"> 
</span><span class="cx"> &lt;p id=&quot;nav&quot;&gt;
</span><ins>+&lt;a href=&quot;&lt;?php echo site_url('wp-login.php', 'login') ?&gt;&quot;&gt;&lt;?php _e('Log in') ?&gt;&lt;/a&gt;
</ins><span class="cx"> &lt;?php if (get_option('users_can_register')) : ?&gt;
</span><del>-&lt;a href=&quot;&lt;?php echo site_url('wp-login.php', 'login') ?&gt;&quot;&gt;&lt;?php _e('Log in') ?&gt;&lt;/a&gt; |
-&lt;a href=&quot;&lt;?php echo site_url('wp-login.php?action=register', 'login') ?&gt;&quot;&gt;&lt;?php _e('Register') ?&gt;&lt;/a&gt;
-&lt;?php else : ?&gt;
-&lt;a href=&quot;&lt;?php echo site_url('wp-login.php', 'login') ?&gt;&quot;&gt;&lt;?php _e('Log in') ?&gt;&lt;/a&gt;
</del><ins>+ | &lt;a href=&quot;&lt;?php echo site_url('wp-login.php?action=register', 'login') ?&gt;&quot;&gt;&lt;?php _e('Register') ?&gt;&lt;/a&gt;
</ins><span class="cx"> &lt;?php endif; ?&gt;
</span><span class="cx"> &lt;/p&gt;
</span><span class="cx"> 
</span><del>-&lt;/div&gt;
-
-&lt;p id=&quot;backtoblog&quot;&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;/&quot; title=&quot;&lt;?php _e('Are you lost?') ?&gt;&quot;&gt;&lt;?php printf(__('&amp;larr; Back to %s'), get_bloginfo('title', 'display' )); ?&gt;&lt;/a&gt;&lt;/p&gt;
-
-&lt;script type=&quot;text/javascript&quot;&gt;
-try{document.getElementById('user_login').focus();}catch(e){}
-if(typeof wpOnload=='function')wpOnload();
-&lt;/script&gt;
-&lt;/body&gt;
-&lt;/html&gt;
</del><span class="cx"> &lt;?php
</span><ins>+login_footer('user_login');
</ins><span class="cx"> break;
</span><span class="cx"> 
</span><span class="cx"> case 'resetpass' :
</span><span class="cx"> case 'rp' :
</span><del>-        $errors = reset_password($_GET['key'], $_GET['login']);
</del><ins>+        $user = check_password_reset_key($_GET['key'], $_GET['login']);
</ins><span class="cx"> 
</span><del>-        if ( ! is_wp_error($errors) ) {
-                wp_redirect('wp-login.php?checkemail=newpass');
-                exit();
</del><ins>+        if ( is_wp_error($user) ) {
+                wp_redirect('wp-login.php?action=lostpassword&amp;error=invalidkey');
+                exit;
</ins><span class="cx">         }
</span><span class="cx"> 
</span><del>-        wp_redirect('wp-login.php?action=lostpassword&amp;error=invalidkey');
-        exit();
</del><ins>+        $errors = '';
</ins><span class="cx"> 
</span><ins>+        if ( isset($_POST['pass1']) &amp;&amp; $_POST['pass1'] != $_POST['pass2'] ) {
+                $errors = new WP_Error('password_reset_mismatch', __('The passwords do not match.'));
+        } elseif ( isset($_POST['pass1']) &amp;&amp; !empty($_POST['pass1']) ) {
+                reset_password($user, $_POST['pass']);
+                login_header(__('Password Reset'), '&lt;p class=&quot;message reset-pass&quot;&gt;' . __('Your password has been reset.') . ' &lt;a href=&quot;' . site_url('wp-login.php', 'login') . '&quot;&gt;' . __('Log in') . '&lt;/a&gt;&lt;/p&gt;');
+                login_footer();
+                exit;
+        }
+
+        login_header(__('Reset Password'), '&lt;p class=&quot;message reset-pass&quot;&gt;' . __('Reset your password') . '&lt;/p&gt;', $errors );
+?&gt;
+&lt;form name=&quot;resetpassform&quot; id=&quot;resetpassform&quot; action=&quot;&lt;?php echo site_url('wp-login.php?action=resetpass&amp;key=' . urlencode($_GET['key']) . '&amp;login=' . urlencode($_GET['login']), 'login_post') ?&gt;&quot; method=&quot;post&quot;&gt;
+        &lt;p&gt;
+                &lt;label&gt;&lt;?php _e('New Password') ?&gt;&lt;br /&gt;
+                &lt;input type=&quot;password&quot; name=&quot;pass1&quot; id=&quot;user_pass&quot; class=&quot;input&quot; size=&quot;20&quot; value=&quot;&quot; autocomplete=&quot;off&quot; /&gt;&lt;/label&gt;
+        &lt;/p&gt;
+        &lt;p&gt;
+                &lt;label&gt;&lt;?php _e('New Password Again') ?&gt;&lt;br /&gt;
+                &lt;input type=&quot;password&quot; name=&quot;pass2&quot; id=&quot;user_pass&quot; class=&quot;input&quot; size=&quot;20&quot; value=&quot;&quot; autocomplete=&quot;off&quot; /&gt;&lt;/label&gt;
+        &lt;/p&gt;
+        &lt;br class=&quot;clear&quot; /&gt;
+        &lt;p class=&quot;submit&quot;&gt;&lt;input type=&quot;submit&quot; name=&quot;wp-submit&quot; id=&quot;wp-submit&quot; class=&quot;button-primary&quot; value=&quot;&lt;?php esc_attr_e('Reset Password'); ?&gt;&quot; tabindex=&quot;100&quot; /&gt;&lt;/p&gt;
+&lt;/form&gt;
+
+&lt;p id=&quot;nav&quot;&gt;
+&lt;a href=&quot;&lt;?php echo site_url('wp-login.php', 'login') ?&gt;&quot;&gt;&lt;?php _e('Log in') ?&gt;&lt;/a&gt;
+&lt;?php if (get_option('users_can_register')) : ?&gt;
+ | &lt;a href=&quot;&lt;?php echo site_url('wp-login.php?action=register', 'login') ?&gt;&quot;&gt;&lt;?php _e('Register') ?&gt;&lt;/a&gt;
+&lt;?php endif; ?&gt;
+&lt;/p&gt;
+
+&lt;?php
+login_footer('user_pass');
</ins><span class="cx"> break;
</span><span class="cx"> 
</span><span class="cx"> case 'register' :
</span><span class="lines">@@ -485,17 +521,8 @@
</span><span class="cx"> &lt;a href=&quot;&lt;?php echo site_url('wp-login.php?action=lostpassword', 'login') ?&gt;&quot; title=&quot;&lt;?php _e('Password Lost and Found') ?&gt;&quot;&gt;&lt;?php _e('Lost your password?') ?&gt;&lt;/a&gt;
</span><span class="cx"> &lt;/p&gt;
</span><span class="cx"> 
</span><del>-&lt;/div&gt;
-
-&lt;p id=&quot;backtoblog&quot;&gt;&lt;a href=&quot;&lt;?php bloginfo('url'); ?&gt;/&quot; title=&quot;&lt;?php _e('Are you lost?') ?&gt;&quot;&gt;&lt;?php printf(__('&amp;larr; Back to %s'), get_bloginfo('title', 'display' )); ?&gt;&lt;/a&gt;&lt;/p&gt;
-
-&lt;script type=&quot;text/javascript&quot;&gt;
-try{document.getElementById('user_login').focus();}catch(e){}
-if(typeof wpOnload=='function')wpOnload();
-&lt;/script&gt;
-&lt;/body&gt;
-&lt;/html&gt;
</del><span class="cx"> &lt;?php
</span><ins>+login_footer('user_login');
</ins><span class="cx"> break;
</span><span class="cx"> 
</span><span class="cx"> case 'login' :
</span></span></pre>
</div>
</div>

</body>
</html>