Zeile 395 | Zeile 395 |
---|
$this->set_error("invalid_birthday_coppa"); return false; }
|
$this->set_error("invalid_birthday_coppa"); return false; }
|
elseif($mybb->settings['coppa'] == "deny" && $birthday['year'] > (date("Y")-13))
| elseif(($mybb->settings['coppa'] == "deny" && $birthday['year'] > (date("Y")-13)) && !is_moderator())
|
{ $this->set_error("invalid_birthday_coppa2"); return false;
| { $this->set_error("invalid_birthday_coppa2"); return false;
|
Zeile 485 | Zeile 485 |
---|
$options = array( 'order_by' => 'disporder' );
|
$options = array( 'order_by' => 'disporder' );
|
$query = $db->simple_select('profilefields', 'name, type, fid, required, maxlength', $editable, $options);
| $query = $db->simple_select('profilefields', 'name, postnum, type, fid, required, maxlength', $editable, $options);
|
// Then loop through the profile fields. while($profilefield = $db->fetch_array($query)) {
|
// Then loop through the profile fields. while($profilefield = $db->fetch_array($query)) {
|
| // Does this field have a minimum post count? if(!$this->data['profile_fields_editable'] && !empty($profilefield['postnum']) && $profilefield['postnum'] > $user['postnum']) { continue; }
|
$profilefield['type'] = htmlspecialchars_uni($profilefield['type']); $thing = explode("\n", $profilefield['type'], "2"); $type = trim($thing[0]);
| $profilefield['type'] = htmlspecialchars_uni($profilefield['type']); $thing = explode("\n", $profilefield['type'], "2"); $type = trim($thing[0]);
|
Zeile 602 | Zeile 608 |
---|
// Verify yes/no options. $this->verify_yesno_option($options, 'allownotices', 1); $this->verify_yesno_option($options, 'hideemail', 0);
|
// Verify yes/no options. $this->verify_yesno_option($options, 'allownotices', 1); $this->verify_yesno_option($options, 'hideemail', 0);
|
$this->verify_yesno_option($options, 'emailpmnotify', 0);
| |
$this->verify_yesno_option($options, 'receivepms', 1); $this->verify_yesno_option($options, 'receivefrombuddy', 0); $this->verify_yesno_option($options, 'pmnotice', 1);
| $this->verify_yesno_option($options, 'receivepms', 1); $this->verify_yesno_option($options, 'receivefrombuddy', 0); $this->verify_yesno_option($options, 'pmnotice', 1);
|
Zeile 1017 | Zeile 1022 |
---|
"receivepms" => $user['options']['receivepms'], "receivefrombuddy" => $user['options']['receivefrombuddy'], "pmnotice" => $user['options']['pmnotice'],
|
"receivepms" => $user['options']['receivepms'], "receivefrombuddy" => $user['options']['receivefrombuddy'], "pmnotice" => $user['options']['pmnotice'],
|
"pmnotify" => $user['options']['emailpmnotify'],
| "pmnotify" => $user['options']['pmnotify'],
|
"showsigs" => $user['options']['showsigs'], "showavatars" => $user['options']['showavatars'], "showquickreply" => $user['options']['showquickreply'],
| "showsigs" => $user['options']['showsigs'], "showavatars" => $user['options']['showavatars'], "showquickreply" => $user['options']['showquickreply'],
|