﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	severity	resolution	keywords	cc
15473	wp_login action can't deal with alternate auth mechanisms	Otto42	ryan	"In the wp_signon function, the action hook for wp_login is called like this:
`do_action('wp_login', $credentials['user_login']);`

Problem is that `$credentials['user_login']` is the content of the form field passed to it by the login screen. If an alternate authentication mechanism is used (like via Twitter or Facebook), then the action does not get the resulting user name that is logging in.

Fix:

If the $user variable is_a WP_User object, then the value passed to this action hook should be $user->user_login instead, so as to pass the login name of the authenticated user to the action.
"	defect (bug)	closed	normal	3.3	Users	3.1	minor	fixed	has-patch	matdumsa@…
