Zeile 44 | Zeile 44 |
---|
* Checks a password with a supplied username. * * @param string The username of the user.
|
* Checks a password with a supplied username. * * @param string The username of the user.
|
* @param string The md5()'ed password.
| * @param string The plain-text password.
|
* @return boolean|array False when no match, array with user info when match. */ function validate_password_from_username($username, $password)
| * @return boolean|array False when no match, array with user info when match. */ function validate_password_from_username($username, $password)
|
Zeile 55 | Zeile 55 |
---|
if(!$user['uid']) { return false;
|
if(!$user['uid']) { return false;
|
}
| }
|
else { return validate_password_from_uid($user['uid'], $password, $user);
| else { return validate_password_from_uid($user['uid'], $password, $user);
|
Zeile 66 | Zeile 66 |
---|
* Checks a password with a supplied uid. * * @param int The user id.
|
* Checks a password with a supplied uid. * * @param int The user id.
|
* @param string The md5()'ed password.
| * @param string The plain-text password.
|
* @param string An optional user data array. * @return boolean|array False when not valid, user data array when valid. */
| * @param string An optional user data array. * @return boolean|array False when not valid, user data array when valid. */
|
Zeile 517 | Zeile 517 |
---|
$uid = $mybb->user['uid']; }
|
$uid = $mybb->user['uid']; }
|
// If using logged in user, use the last visit
| // If using current user, use the last visit
|
if($uid == $mybb->user['uid']) { $lastvisit = $mybb->user['lastvisit'];
| if($uid == $mybb->user['uid']) { $lastvisit = $mybb->user['lastvisit'];
|