Zeile 83 | Zeile 83 |
---|
if($user['warningpoints'] >= $mybb->settings['maxwarningpoints']) { $this->set_error('error_user_reached_max_warning');
|
if($user['warningpoints'] >= $mybb->settings['maxwarningpoints']) { $this->set_error('error_user_reached_max_warning');
|
return false; }
return true; }
/** * Validate a warning thread. * * @return boolean True when valid, false when invalid. */ function validate_thread() { $warning = &$this->data;
$thread = get_thread($warning['tid']);
if(!$thread['tid']) { $this->set_error('error_invalid_post');
| |
return false; }
| return false; }
|
Zeile 115 | Zeile 95 |
---|
* @return boolean True when valid, false when invalid. */ function validate_post()
|
* @return boolean True when valid, false when invalid. */ function validate_post()
|
{ $warning = &$this->data;
$post = get_post($warning['pid']);
| { $warning = &$this->data;
$post = get_post($warning['pid']);
|
if(!$post['pid']) { $this->set_error('error_invalid_post'); return false;
|
if(!$post['pid']) { $this->set_error('error_invalid_post'); return false;
|
}
if(!isset($warning['tid'])) { $warning['tid'] = $post['tid'];
| |
}
return true;
| }
return true;
|
Zeile 146 | Zeile 121 |
---|
if(!trim($warning['notes'])) { $this->set_error('error_no_note');
|
if(!trim($warning['notes'])) { $this->set_error('error_no_note');
|
return false; }
return true;
| return false; }
return true;
|
}
/** * Validate maximum warnings per day for current user.
|
}
/** * Validate maximum warnings per day for current user.
|
*
| *
|
* @return boolean True when valid, false when invalid. */ function validate_maximum()
| * @return boolean True when valid, false when invalid. */ function validate_maximum()
|
Zeile 182 | Zeile 157 |
---|
* @return boolean True when valid, false when invalid. */ function validate_type()
|
* @return boolean True when valid, false when invalid. */ function validate_type()
|
{ global $mybb, $db;
| { global $mybb, $db;
|
$warning = &$this->data;
| $warning = &$this->data;
|
Zeile 250 | Zeile 225 |
---|
{ $this->set_error('error_invalid_type'); return false;
|
{ $this->set_error('error_invalid_type'); return false;
|
}
| }
|
$warning['points'] = $this->warning_type['points'];
|
$warning['points'] = $this->warning_type['points'];
|
$warning['title'] = $warning['expires'] = '';
| $warning['title'] = ''; $warning['expires'] = 0;
|
if($this->warning_type['expirationtime']) { $warning['expires'] = TIME_NOW+$this->warning_type['expirationtime'];
| if($this->warning_type['expirationtime']) { $warning['expires'] = TIME_NOW+$this->warning_type['expirationtime'];
|
Zeile 283 | Zeile 259 |
---|
if(array_key_exists('pid', $warning)) { $this->validate_post();
|
if(array_key_exists('pid', $warning)) { $this->validate_post();
|
$this->validate_thread();
| |
} if(array_key_exists('type', $warning)) { $this->validate_type();
|
} if(array_key_exists('type', $warning)) { $this->validate_type();
|
}
| }
|
$plugins->run_hooks("datahandler_warnings_validate_warning", $this);
| $plugins->run_hooks("datahandler_warnings_validate_warning", $this);
|
Zeile 306 | Zeile 281 |
---|
/** * Gets a valid warning from the DB engine. *
|
/** * Gets a valid warning from the DB engine. *
|
* @return mixed array when valid, boolean false when invalid.
| * @param int $wid * @return array|bool array when valid, boolean false when invalid.
|
*/ function get($wid) {
| */ function get($wid) {
|
Zeile 386 | Zeile 362 |
---|
*/ function update_user($method='insert') {
|
*/ function update_user($method='insert') {
|
global $db, $mybb, $lang;
| global $db, $mybb, $lang, $cache, $groupscache;
if($mybb->settings['maxwarningpoints'] < 1) { $mybb->settings['maxwarningpoints'] = 10; }
if(!is_array($groupscache)) { $groupscache = $cache->read("usergroups"); }
|
$warning = &$this->data;
| $warning = &$this->data;
|
Zeile 478 | Zeile 464 |
---|
}
$new_ban = array(
|
}
$new_ban = array(
|
"uid" => (int)$user['uid'], "gid" => $db->escape_string($action['usergroup']), "oldgroup" => $db->escape_string($user['usergroup']), "oldadditionalgroups" => $db->escape_string($user['additionalgroups']), "olddisplaygroup" => $db->escape_string($user['displaygroup']),
| "uid" => $user['uid'], "gid" => $action['usergroup'], "oldgroup" => $user['usergroup'], "oldadditionalgroups" => $user['additionalgroups'], "olddisplaygroup" => $user['displaygroup'],
|
"admin" => $mybb->user['uid'], "dateline" => TIME_NOW, "bantime" => $db->escape_string($bantime),
| "admin" => $mybb->user['uid'], "dateline" => TIME_NOW, "bantime" => $db->escape_string($bantime),
|
Zeile 494 | Zeile 480 |
---|
{ $db->delete_query("banned", "uid='{$user['uid']}' AND gid='{$action['usergroup']}'"); // Override new ban details with old group info
|
{ $db->delete_query("banned", "uid='{$user['uid']}' AND gid='{$action['usergroup']}'"); // Override new ban details with old group info
|
$new_ban['oldgroup'] = $db->escape_string($existing_ban['oldgroup']); $new_ban['oldadditionalgroups'] = $db->escape_string($existing_ban['oldadditionalgroups']); $new_ban['olddisplaygroup'] = $db->escape_string($existing_ban['olddisplaygroup']);
| $new_ban['oldgroup'] = $existing_ban['oldgroup']; $new_ban['oldadditionalgroups'] = $existing_ban['oldadditionalgroups']; $new_ban['olddisplaygroup'] = $existing_ban['olddisplaygroup'];
|
}
$period = $lang->expiration_never;
| }
$period = $lang->expiration_never;
|
Zeile 513 | Zeile 499 |
---|
$db->insert_query("banned", $new_ban); $this->updated_user['usergroup'] = $action['usergroup'];
|
$db->insert_query("banned", $new_ban); $this->updated_user['usergroup'] = $action['usergroup'];
|
$this->updated_user['additionalgroups'] = $this->updated_user['displaygroup'] = "";
| $this->updated_user['additionalgroups'] = ''; $this->updated_user['displaygroup'] = 0;
|
} break; // Suspend posting privileges
| } break; // Suspend posting privileges
|
Zeile 696 | Zeile 683 |
---|
$this->write_warning_data = array( "uid" => (int)$warning['uid'],
|
$this->write_warning_data = array( "uid" => (int)$warning['uid'],
|
"tid" => (int)$warning['tid'],
| "tid" => (int)$warning['type'],
|
"pid" => (int)$warning['pid'], "title" => $db->escape_string($warning['title']), "points" => (int)$warning['points'], "dateline" => TIME_NOW,
|
"pid" => (int)$warning['pid'], "title" => $db->escape_string($warning['title']), "points" => (int)$warning['points'], "dateline" => TIME_NOW,
|
"issuedby" => (int)$mybb->user['uid'], "expires" => $db->escape_string($warning['expires']),
| "issuedby" => $mybb->user['uid'], "expires" => (int)$warning['expires'],
|
"expired" => 0, "revokereason" => '', "notes" => $db->escape_string($warning['notes'])
| "expired" => 0, "revokereason" => '', "notes" => $db->escape_string($warning['notes'])
|