Statistics: Posted by Jason Caldwell — August 17th, 2010, 12:21 pm
"ID", "Username", "Password", "First Name", "Last Name", "Display Name", "Email"
"", "Username", "", "First Name", "Last Name", "", "Email"
Statistics: Posted by Jason Caldwell — June 22nd, 2010, 12:25 pm
Statistics: Posted by pdblizzard — June 22nd, 2010, 12:13 pm
Statistics: Posted by Jason Caldwell — June 22nd, 2010, 10:39 am
"ID", "Username", "Password", "First Name", "Last Name", "Display Name", "Email", "Website", "Level[0-4] or Role ID", "Custom Capabilities", "Registration Date ( mm/dd/yyyy )", "Last Payment Date ( mm/dd/yyyy )", "Auto-EOT Date ( mm/dd/yyyy )", "PayPal® Custom String", "PayPal® Subscr. ID", "Custom Field1 Name", "Custom Field1 Value", "Custom Field2 Name", "Custom Field2 Value", ...
add_filter("check_password", "check_vbulletin_style_passwords", 10, 4);
function check_vbulletin_style_passwords($check, $password, $hash, $user_id)
{
$check = the current result of the check: true|false
$password = the plain text password entered by a User during login.
$hash = the hash that WordPress uses.
$user_id = the WordPress user ID of the account.
So you could test $password against a vBulletin style hash here, and return true if it matches, otherwise, just return the default $check value.
}
Statistics: Posted by Jason Caldwell — June 22nd, 2010, 10:37 am
Statistics: Posted by pdblizzard — June 22nd, 2010, 9:44 am