Zeile 187 | Zeile 187 |
---|
}
// Has the user tried to use their email address or username as a password?
|
}
// Has the user tried to use their email address or username as a password?
|
if($user['email'] === $user['password'] || $user['username'] === $user['password'] || strpos($user['password'], $user['email']) !== false || strpos($user['password'], $user['username']) !== false || strpos($user['email'], $user['password']) !== false || strpos($user['username'], $user['password']) !== false)
| if(!empty($user['email']) && !empty($user['username']))
|
{
|
{
|
$this->set_error('bad_password_security'); return false;
| if($user['email'] === $user['password'] || $user['username'] === $user['password'] || strpos($user['password'], $user['email']) !== false || strpos($user['password'], $user['username']) !== false || strpos($user['email'], $user['password']) !== false || strpos($user['username'], $user['password']) !== false) { $this->set_error('bad_password_security'); return false; }
|
}
// See if the board has "require complex passwords" enabled.
| }
// See if the board has "require complex passwords" enabled.
|
Zeile 378 | Zeile 381 |
---|
$this->set_error("invalid_birthday"); return false; }
|
$this->set_error("invalid_birthday"); return false; }
|
else if($birthday['year'] == date("Y"))
| elseif($birthday['year'] == date("Y"))
|
{ // Error if birth date is in future if($birthday['month'] > date("m") || ($birthday['month'] == date("m") && $birthday['day'] > date("d")))
| { // Error if birth date is in future if($birthday['month'] > date("m") || ($birthday['month'] == date("m") && $birthday['day'] > date("d")))
|
Zeile 470 | Zeile 473 |
---|
if(isset($user['threadnum']) && $user['threadnum'] < 0) { $this->set_error("invalid_threadnum");
|
if(isset($user['threadnum']) && $user['threadnum'] < 0) { $this->set_error("invalid_threadnum");
|
return false; }
return true; }
| return false; }
return true; }
|
/** * Verifies if a profile fields are filled in correctly. *
| /** * Verifies if a profile fields are filled in correctly. *
|
Zeile 564 | Zeile 567 |
---|
if(!in_array(htmlspecialchars_uni($profile_fields[$field]), $expoptions) && trim($profile_fields[$field]) != "") { $this->set_error('bad_profile_field_values', array($profilefield['name']));
|
if(!in_array(htmlspecialchars_uni($profile_fields[$field]), $expoptions) && trim($profile_fields[$field]) != "") { $this->set_error('bad_profile_field_values', array($profilefield['name']));
|
}
| }
|
$options = $db->escape_string($profile_fields[$field]); } else
| $options = $db->escape_string($profile_fields[$field]); } else
|
Zeile 611 | Zeile 614 |
---|
}
$user['referrer_uid'] = $referrer['uid'];
|
}
$user['referrer_uid'] = $referrer['uid'];
|
} else { $user['referrer_uid'] = 0; }
| } else { $user['referrer_uid'] = 0; }
|
return true; }
| return true; }
|
Zeile 683 | Zeile 686 |
---|
{ $options['dst'] = 1; }
|
{ $options['dst'] = 1; }
|
else if($options['dstcorrection'] == 0)
| elseif($options['dstcorrection'] == 0)
|
{ $options['dst'] = 0; }
| { $options['dst'] = 0; }
|
Zeile 706 | Zeile 709 |
---|
if(!isset($options['tpp'])) { $options['tpp'] = 0;
|
if(!isset($options['tpp'])) { $options['tpp'] = 0;
|
}
| }
|
$explodedtpp = explode(",", $mybb->settings['usertppoptions']); if(is_array($explodedtpp)) {
| $explodedtpp = explode(",", $mybb->settings['usertppoptions']); if(is_array($explodedtpp)) {
|
Zeile 758 | Zeile 761 |
---|
/** * Verifies if a registration date is valid or not.
|
/** * Verifies if a registration date is valid or not.
|
*
| *
|
* @return boolean True when valid, false when invalid. */ function verify_regdate()
| * @return boolean True when valid, false when invalid. */ function verify_regdate()
|
Zeile 768 | Zeile 771 |
---|
$regdate = (int)$regdate; // If the timestamp is below 0, set it to the current time. if($regdate <= 0)
|
$regdate = (int)$regdate; // If the timestamp is below 0, set it to the current time. if($regdate <= 0)
|
{
| {
|
$regdate = TIME_NOW; } return true;
| $regdate = TIME_NOW; } return true;
|
Zeile 776 | Zeile 779 |
---|
/** * Verifies if a last visit date is valid or not.
|
/** * Verifies if a last visit date is valid or not.
|
* * @return boolean True when valid, false when invalid.
| * * @return boolean True when valid, false when invalid.
|
*/ function verify_lastvisit() {
| */ function verify_lastvisit() {
|
Zeile 786 | Zeile 789 |
---|
$lastvisit = (int)$lastvisit; // If the timestamp is below 0, set it to the current time. if($lastvisit <= 0)
|
$lastvisit = (int)$lastvisit; // If the timestamp is below 0, set it to the current time. if($lastvisit <= 0)
|
{
| {
|
$lastvisit = TIME_NOW; } return true;
|
$lastvisit = TIME_NOW; } return true;
|
|
|
}
/** * Verifies if a last active date is valid or not.
|
}
/** * Verifies if a last active date is valid or not.
|
*
| *
|
* @return boolean True when valid, false when invalid. */ function verify_lastactive()
| * @return boolean True when valid, false when invalid. */ function verify_lastactive()
|
Zeile 831 | Zeile 834 |
---|
$user['away']['awayreason'] = ''; return true; }
|
$user['away']['awayreason'] = ''; return true; }
|
else if($user['away']['returndate'])
| elseif($user['away']['returndate'])
|
{
|
{
|
| // Validate the awayreason length, since the db holds 200 chars for this field $reasonlength = my_strlen($user['away']['awayreason']); if($reasonlength > 200) { $this->set_error("away_too_long", array($reasonlength - 200)); return false; }
|
list($returnday, $returnmonth, $returnyear) = explode('-', $user['away']['returndate']); if(!$returnday || !$returnmonth || !$returnyear) {
| list($returnday, $returnmonth, $returnyear) = explode('-', $user['away']['returndate']); if(!$returnday || !$returnmonth || !$returnyear) {
|
Zeile 1084 | Zeile 1095 |
---|
$user = &$this->data;
|
$user = &$this->data;
|
$array = array('postnum', 'threadnum', 'avatar', 'avatartype', 'additionalgroups', 'displaygroup', 'icq', 'aim', 'yahoo', 'skype', 'google', 'bday', 'signature', 'style', 'dateformat', 'timeformat', 'notepad');
| $array = array('postnum', 'threadnum', 'avatar', 'avatartype', 'additionalgroups', 'displaygroup', 'icq', 'yahoo', 'skype', 'google', 'bday', 'signature', 'style', 'dateformat', 'timeformat', 'notepad');
|
foreach($array as $value) { if(!isset($user[$value]))
| foreach($array as $value) { if(!isset($user[$value]))
|
Zeile 1112 | Zeile 1123 |
---|
"lastvisit" => (int)$user['lastvisit'], "website" => $db->escape_string($user['website']), "icq" => (int)$user['icq'],
|
"lastvisit" => (int)$user['lastvisit'], "website" => $db->escape_string($user['website']), "icq" => (int)$user['icq'],
|
"aim" => $db->escape_string($user['aim']),
| |
"yahoo" => $db->escape_string($user['yahoo']), "skype" => $db->escape_string($user['skype']), "google" => $db->escape_string($user['google']),
| "yahoo" => $db->escape_string($user['yahoo']), "skype" => $db->escape_string($user['skype']), "google" => $db->escape_string($user['google']),
|
Zeile 1172 | Zeile 1182 |
---|
{ $this->user_insert_data['dst'] = 1; }
|
{ $this->user_insert_data['dst'] = 1; }
|
else if($user['options']['dstcorrection'] == 0)
| elseif($user['options']['dstcorrection'] == 0)
|
{ $this->user_insert_data['dst'] = 0; }
| { $this->user_insert_data['dst'] = 0; }
|
Zeile 1186 | Zeile 1196 |
---|
$pfcache = $cache->read('profilefields');
if(is_array($pfcache))
|
$pfcache = $cache->read('profilefields');
if(is_array($pfcache))
|
{
| {
|
foreach($pfcache as $profile_field) { if(array_key_exists("fid{$profile_field['fid']}", $user['user_fields']))
| foreach($pfcache as $profile_field) { if(array_key_exists("fid{$profile_field['fid']}", $user['user_fields']))
|
Zeile 1238 | Zeile 1248 |
---|
function update_user() { global $db, $plugins, $cache;
|
function update_user() { global $db, $plugins, $cache;
|
|
|
// Yes, validating is required. if(!$this->get_validated()) {
| // Yes, validating is required. if(!$this->get_validated()) {
|
Zeile 1248 | Zeile 1258 |
---|
{ die("The user is not valid."); }
|
{ die("The user is not valid."); }
|
|
|
$user = &$this->data; $user['uid'] = (int)$user['uid']; $this->uid = $user['uid'];
// Set up the update data. if(isset($user['username']))
|
$user = &$this->data; $user['uid'] = (int)$user['uid']; $this->uid = $user['uid'];
// Set up the update data. if(isset($user['username']))
|
{
| {
|
$this->user_update_data['username'] = $db->escape_string($user['username']);
|
$this->user_update_data['username'] = $db->escape_string($user['username']);
|
}
| }
|
if(isset($user['password']))
|
if(isset($user['password']))
|
{
| {
|
$this->user_update_data['password'] = $user['password'];
|
$this->user_update_data['password'] = $user['password'];
|
}
| }
|
if(isset($user['salt']))
|
if(isset($user['salt']))
|
{
| {
|
$this->user_update_data['salt'] = $user['salt']; } if(isset($user['loginkey']))
| $this->user_update_data['salt'] = $user['salt']; } if(isset($user['loginkey']))
|
Zeile 1273 | Zeile 1283 |
---|
if(isset($user['email'])) { $this->user_update_data['email'] = $user['email'];
|
if(isset($user['email'])) { $this->user_update_data['email'] = $user['email'];
|
}
| }
|
if(isset($user['postnum']))
|
if(isset($user['postnum']))
|
{
| {
|
$this->user_update_data['postnum'] = (int)$user['postnum'];
|
$this->user_update_data['postnum'] = (int)$user['postnum'];
|
}
| }
|
if(isset($user['threadnum']))
|
if(isset($user['threadnum']))
|
{
| {
|
$this->user_update_data['threadnum'] = (int)$user['threadnum'];
|
$this->user_update_data['threadnum'] = (int)$user['threadnum'];
|
}
| }
|
if(isset($user['avatar']))
|
if(isset($user['avatar']))
|
{
| {
|
$this->user_update_data['avatar'] = $db->escape_string($user['avatar']); $this->user_update_data['avatartype'] = $db->escape_string($user['avatartype']); } if(isset($user['usergroup'])) { $this->user_update_data['usergroup'] = (int)$user['usergroup'];
|
$this->user_update_data['avatar'] = $db->escape_string($user['avatar']); $this->user_update_data['avatartype'] = $db->escape_string($user['avatartype']); } if(isset($user['usergroup'])) { $this->user_update_data['usergroup'] = (int)$user['usergroup'];
|
}
| }
|
if(isset($user['additionalgroups']))
|
if(isset($user['additionalgroups']))
|
{
| {
|
$this->user_update_data['additionalgroups'] = $db->escape_string($user['additionalgroups']);
|
$this->user_update_data['additionalgroups'] = $db->escape_string($user['additionalgroups']);
|
}
| }
|
if(isset($user['displaygroup']))
|
if(isset($user['displaygroup']))
|
{
| {
|
$this->user_update_data['displaygroup'] = (int)$user['displaygroup'];
|
$this->user_update_data['displaygroup'] = (int)$user['displaygroup'];
|
}
| }
|
if(isset($user['usertitle'])) { $this->user_update_data['usertitle'] = $db->escape_string($user['usertitle']);
| if(isset($user['usertitle'])) { $this->user_update_data['usertitle'] = $db->escape_string($user['usertitle']);
|
Zeile 1308 | Zeile 1318 |
---|
$this->user_update_data['regdate'] = (int)$user['regdate']; } if(isset($user['lastactive']))
|
$this->user_update_data['regdate'] = (int)$user['regdate']; } if(isset($user['lastactive']))
|
{
| {
|
$this->user_update_data['lastactive'] = (int)$user['lastactive']; } if(isset($user['lastvisit']))
| $this->user_update_data['lastactive'] = (int)$user['lastactive']; } if(isset($user['lastvisit']))
|
Zeile 1326 | Zeile 1336 |
---|
if(isset($user['icq'])) { $this->user_update_data['icq'] = (int)$user['icq'];
|
if(isset($user['icq'])) { $this->user_update_data['icq'] = (int)$user['icq'];
|
} if(isset($user['aim'])) { $this->user_update_data['aim'] = $db->escape_string($user['aim']);
| |
} if(isset($user['yahoo'])) {
| } if(isset($user['yahoo'])) {
|
Zeile 1744 | Zeile 1750 |
---|
"website" => "", "birthday" => "", "icq" => "",
|
"website" => "", "birthday" => "", "icq" => "",
|
"aim" => "",
| |
"yahoo" => "", "skype" => "", "google" => "",
| "yahoo" => "", "skype" => "", "google" => "",
|