Changes between Initial Version and Version 1 of Ticket #15473
- Timestamp:
- 11/18/2010 07:10:57 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #15473 – Description
initial v1 1 In the wp_signon function, the action hook for wp_login i ncalled like this:2 do_action('wp_login', $credentials['user_login']); 1 In the wp_signon function, the action hook for wp_login is called like this: 2 `do_action('wp_login', $credentials['user_login']);` 3 3 4 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.4 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. 5 5 6 6 Fix: