Zeile 36 | Zeile 36 |
---|
if($mybb->request_method == 'post') { $is_today = false;
|
if($mybb->request_method == 'post') { $is_today = false;
|
| $mybb->input['older_than'] = $mybb->get_input('older_than', MyBB::INPUT_INT);
|
if($mybb->input['older_than'] <= 0) { $is_today = true; $mybb->input['older_than'] = 1; }
|
if($mybb->input['older_than'] <= 0) { $is_today = true; $mybb->input['older_than'] = 1; }
|
$where = 'dateline < '.(TIME_NOW-($mybb->get_input('older_than', MyBB::INPUT_INT)*86400));
| $where = 'dateline < '.(TIME_NOW-($mybb->input['older_than']*86400));
|
// Searching for entries by a particular user if($mybb->input['uid'])
| // Searching for entries by a particular user if($mybb->input['uid'])
|
Zeile 104 | Zeile 105 |
---|
"); while($user = $db->fetch_array($query)) {
|
"); while($user = $db->fetch_array($query)) {
|
$user_options[$user['uid']] = $user['username'];
| $user_options[$user['uid']] = htmlspecialchars_uni($user['username']);
|
}
$form = new Form("index.php?module=tools-modlog&action=prune", "post");
| }
$form = new Form("index.php?module=tools-modlog&action=prune", "post");
|
Zeile 239 | Zeile 240 |
---|
$logitem['action'] = htmlspecialchars_uni($logitem['action']); $logitem['dateline'] = my_date('relative', $logitem['dateline']); $trow = alt_trow();
|
$logitem['action'] = htmlspecialchars_uni($logitem['action']); $logitem['dateline'] = my_date('relative', $logitem['dateline']); $trow = alt_trow();
|
$username = format_name($logitem['username'], $logitem['usergroup'], $logitem['displaygroup']);
| $username = format_name(htmlspecialchars_uni($logitem['username']), $logitem['usergroup'], $logitem['displaygroup']);
|
$logitem['profilelink'] = build_profile_link($username, $logitem['uid'], "_blank"); if($logitem['tsubject']) {
| $logitem['profilelink'] = build_profile_link($username, $logitem['uid'], "_blank"); if($logitem['tsubject']) {
|
Zeile 309 | Zeile 310 |
---|
{ $selected = "selected=\"selected\""; }
|
{ $selected = "selected=\"selected\""; }
|
$user_options[$user['uid']] = $user['username'];
| $user_options[$user['uid']] = htmlspecialchars_uni($user['username']);
|
}
$sort_by = array(
| }
$sort_by = array(
|