[wp-trac] [WordPress Trac] #15384: wp-login.php refactor
WordPress Trac
wp-trac at lists.automattic.com
Wed Apr 13 18:56:14 UTC 2011
#15384: wp-login.php refactor
----------------------------+-----------------------------
Reporter: nacin | Owner:
Type: defect (bug) | Status: new
Priority: normal | Milestone: Future Release
Component: Administration | Version:
Severity: normal | Resolution:
Keywords: 3.2-early |
----------------------------+-----------------------------
Comment (by Viper007Bond):
It'd be cool if you could pre-fill the lost password form using a query
argument. It's a simple change -- just change `$_POST` to `$_REQUEST`:
{{{
$user_login = isset($_POST['user_login']) ?
stripslashes($_POST['user_login']) : '';
}}}
{{{
$user_login = isset($_REQUEST['user_login']) ?
stripslashes($_REQUEST['user_login']) : '';
}}}
--
Ticket URL: <http://core.trac.wordpress.org/ticket/15384#comment:13>
WordPress Trac <http://core.trac.wordpress.org/>
WordPress blogging software
More information about the wp-trac
mailing list