Zeile 43 | Zeile 43 |
---|
$db->delete_query("mailerrors", "eid IN ({$log_ids})"); $num_deleted = $db->affected_rows(); }
|
$db->delete_query("mailerrors", "eid IN ({$log_ids})"); $num_deleted = $db->affected_rows(); }
|
| // Log admin action log_admin_action($num_deleted);
|
}
$plugins->run_hooks("admin_tools_mailerrors_prune_commit");
|
}
$plugins->run_hooks("admin_tools_mailerrors_prune_commit");
|
// Log admin action log_admin_action($num_deleted);
| |
flash_message($lang->selected_logs_deleted, 'success'); admin_redirect("index.php?module=tools-mailerrors");
| flash_message($lang->selected_logs_deleted, 'success'); admin_redirect("index.php?module=tools-mailerrors");
|
Zeile 56 | Zeile 56 |
---|
if($mybb->input['action'] == "view") {
|
if($mybb->input['action'] == "view") {
|
$query = $db->simple_select("mailerrors", "*", "eid='".(int)$mybb->input['eid']."'");
| $query = $db->simple_select("mailerrors", "*", "eid='".$mybb->get_input('eid', MyBB::INPUT_INT)."'");
|
$log = $db->fetch_array($query);
if(!$log['eid'])
| $log = $db->fetch_array($query);
if(!$log['eid'])
|
Zeile 71 | Zeile 71 |
---|
$log['subject'] = htmlspecialchars_uni($log['subject']); $log['error'] = htmlspecialchars_uni($log['error']); $log['smtperror'] = htmlspecialchars_uni($log['smtpcode']);
|
$log['subject'] = htmlspecialchars_uni($log['subject']); $log['error'] = htmlspecialchars_uni($log['error']); $log['smtperror'] = htmlspecialchars_uni($log['smtpcode']);
|
$log['dateline'] = date($mybb->settings['dateformat'], $log['dateline']).", ".date($mybb->settings['timeformat'], $log['dateline']);
| $log['dateline'] = my_date('relative', $log['dateline']);
|
$log['message'] = nl2br(htmlspecialchars_uni($log['message']));
?>
| $log['message'] = nl2br(htmlspecialchars_uni($log['message']));
?>
|
Zeile 133 | Zeile 133 |
---|
if(!$mybb->input['action']) {
|
if(!$mybb->input['action']) {
|
| $query = $db->simple_select("mailerrors l", "COUNT(eid) AS logs", "1=1 {$additional_sql_criteria}"); $total_rows = $db->fetch_field($query, "logs");
|
$per_page = 20;
if($mybb->input['page'] && $mybb->input['page'] > 1) {
|
$per_page = 20;
if($mybb->input['page'] && $mybb->input['page'] > 1) {
|
$mybb->input['page'] = $mybb->get_input('page', 1);
| $mybb->input['page'] = $mybb->get_input('page', MyBB::INPUT_INT);
|
$start = ($mybb->input['page']*$per_page)-$per_page;
|
$start = ($mybb->input['page']*$per_page)-$per_page;
|
}
| $pages = ceil($total_rows / $per_page); if($mybb->input['page'] > $pages) { $mybb->input['page'] = 1; $start = 0; } }
|
else { $mybb->input['page'] = 1;
| else { $mybb->input['page'] = 1;
|
Zeile 166 | Zeile 175 |
---|
if($mybb->input['subject']) { $additional_sql_criteria .= " AND subject LIKE '%".$db->escape_string_like($mybb->input['subject'])."%'";
|
if($mybb->input['subject']) { $additional_sql_criteria .= " AND subject LIKE '%".$db->escape_string_like($mybb->input['subject'])."%'";
|
$additional_criteria[] = "subject='".htmlspecialchars_uni($mybb->input['subject'])."'";
| $additional_criteria[] = "subject=".htmlspecialchars_uni($mybb->input['subject']);
|
$form->generate_hidden_field("subject", $mybb->input['subject']); }
if($mybb->input['fromaddress']) { $additional_sql_criteria .= " AND fromaddress LIKE '%".$db->escape_string_like($mybb->input['fromaddress'])."%'";
|
$form->generate_hidden_field("subject", $mybb->input['subject']); }
if($mybb->input['fromaddress']) { $additional_sql_criteria .= " AND fromaddress LIKE '%".$db->escape_string_like($mybb->input['fromaddress'])."%'";
|
$additional_criteria[] = "fromaddress='".urlencode($mybb->input['fromaddress'])."'";
| $additional_criteria[] = "fromaddress=".urlencode($mybb->input['fromaddress']);
|
$form->generate_hidden_field("fromaddress", $mybb->input['fromaddress']); }
if($mybb->input['toaddress']) { $additional_sql_criteria .= " AND toaddress LIKE '%".$db->escape_string_like($mybb->input['toaddress'])."%'";
|
$form->generate_hidden_field("fromaddress", $mybb->input['fromaddress']); }
if($mybb->input['toaddress']) { $additional_sql_criteria .= " AND toaddress LIKE '%".$db->escape_string_like($mybb->input['toaddress'])."%'";
|
$additional_criteria[] = "toaddress='".urlencode($mybb->input['toaddress'])."'";
| $additional_criteria[] = "toaddress=".urlencode($mybb->input['toaddress']);
|
$form->generate_hidden_field("toaddress", $mybb->input['toaddress']); }
if($mybb->input['error']) { $additional_sql_criteria .= " AND error LIKE '%".$db->escape_string_like($mybb->input['error'])."%'";
|
$form->generate_hidden_field("toaddress", $mybb->input['toaddress']); }
if($mybb->input['error']) { $additional_sql_criteria .= " AND error LIKE '%".$db->escape_string_like($mybb->input['error'])."%'";
|
$additional_criteria[] = "error='".urlencode($mybb->input['error'])."'";
| $additional_criteria[] = "error=".urlencode($mybb->input['error']);
|
$form->generate_hidden_field("error", $mybb->input['error']);
|
$form->generate_hidden_field("error", $mybb->input['error']);
|
}
| }
|
if($additional_criteria)
|
if($additional_criteria)
|
{
| {
|
$additional_criteria = "&".implode("&", $additional_criteria);
|
$additional_criteria = "&".implode("&", $additional_criteria);
|
| } else { $additional_criteria = '';
|
}
$table = new Table;
|
}
$table = new Table;
|
$table->construct_header($form->generate_check_box("checkall", 1, '', array('class' => 'checkall')));
| $table->construct_header($form->generate_check_box("allbox", 1, '', array('class' => 'checkall')));
|
$table->construct_header($lang->subject); $table->construct_header($lang->to, array("class" => "align_center", "width" => "20%")); $table->construct_header($lang->error_message, array("class" => "align_center", "width" => "30%")); $table->construct_header($lang->date_sent, array("class" => "align_center", "width" => "20%"));
|
$table->construct_header($lang->subject); $table->construct_header($lang->to, array("class" => "align_center", "width" => "20%")); $table->construct_header($lang->error_message, array("class" => "align_center", "width" => "30%")); $table->construct_header($lang->date_sent, array("class" => "align_center", "width" => "20%"));
|
$query = $db->query(" SELECT * FROM ".TABLE_PREFIX."mailerrors WHERE 1=1 {$additional_sql_criteria} ORDER BY dateline DESC LIMIT {$start}, {$per_page} ");
| $query = $db->simple_select('mailerrors', '*', "1=1 $additional_sql_criteria", array('order_by' => 'dateline', 'order_dir' => 'DESC', 'limit_start' => $start, 'limit' => $per_page));
|
while($log = $db->fetch_array($query)) { $log['subject'] = htmlspecialchars_uni($log['subject']); $log['toemail'] = htmlspecialchars_uni($log['toemail']); $log['error'] = htmlspecialchars_uni($log['error']);
|
while($log = $db->fetch_array($query)) { $log['subject'] = htmlspecialchars_uni($log['subject']); $log['toemail'] = htmlspecialchars_uni($log['toemail']); $log['error'] = htmlspecialchars_uni($log['error']);
|
$log['dateline'] = date($mybb->settings['dateformat'], $log['dateline']).", ".date($mybb->settings['timeformat'], $log['dateline']);
| $log['dateline'] = my_date('relative', $log['dateline']);
|
$table->construct_cell($form->generate_check_box("log[{$log['eid']}]", $log['eid'], '')); $table->construct_cell("<a href=\"javascript:MyBB.popupWindow('index.php?module=tools-mailerrors&action=view&eid={$log['eid']}', null, true);\">{$log['subject']}</a>");
| $table->construct_cell($form->generate_check_box("log[{$log['eid']}]", $log['eid'], '')); $table->construct_cell("<a href=\"javascript:MyBB.popupWindow('index.php?module=tools-mailerrors&action=view&eid={$log['eid']}', null, true);\">{$log['subject']}</a>");
|
Zeile 241 | Zeile 249 |
---|
}
$form->end();
|
}
$form->end();
|
$query = $db->simple_select("mailerrors l", "COUNT(eid) AS logs", "1=1 {$additional_sql_criteria}"); $total_rows = $db->fetch_field($query, "logs");
| |
echo "<br />".draw_admin_pagination($mybb->input['page'], $per_page, $total_rows, "index.php?module=tools-mailerrors&page={page}{$additional_criteria}");
| echo "<br />".draw_admin_pagination($mybb->input['page'], $per_page, $total_rows, "index.php?module=tools-mailerrors&page={page}{$additional_criteria}");
|
Zeile 262 | Zeile 267 |
---|
$page->output_footer(); }
|
$page->output_footer(); }
|
?>
| |