Zeile 6 | Zeile 6 |
---|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* Website: http://www.mybboard.net * License: http://www.mybboard.net/about/license *
|
* $Id: mailerrors.php 3790 2008-04-23 22:50:33Z Tikitiki $
| * $Id: mailerrors.php 5379 2011-02-21 11:06:42Z Tomm $
|
*/
// Disallow direct access to this file for security reasons
| */
// Disallow direct access to this file for security reasons
|
Zeile 199 | Zeile 199 |
---|
$form->generate_hidden_field("error", $mybb->input['error']); }
|
$form->generate_hidden_field("error", $mybb->input['error']); }
|
$additional_criteria = implode("&", $additional_criteria);
| if($additional_criteria) { $additional_criteria = "&".implode("&", $additional_criteria); }
|
$table = new Table; $table->construct_header($form->generate_check_box("checkall", 1, '', array('class' => 'checkall')));
| $table = new Table; $table->construct_header($form->generate_check_box("checkall", 1, '', array('class' => 'checkall')));
|
Zeile 222 | Zeile 225 |
---|
$log['error'] = htmlspecialchars_uni($log['error']); $log['dateline'] = date($mybb->settings['dateformat'], $log['dateline']).", ".date($mybb->settings['timeformat'], $log['dateline']);
|
$log['error'] = htmlspecialchars_uni($log['error']); $log['dateline'] = date($mybb->settings['dateformat'], $log['dateline']).", ".date($mybb->settings['timeformat'], $log['dateline']);
|
$table->construct_cell($form->generate_check_box("log[{$log['eid']}]", 1, ''));
| $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']}', 'log_entry', 450, 450);\">{$log['subject']}</a>"); $find_from = "<div class=\"float_right\"><a href=\"index.php?module=tools/mailerrors&toaddress={$log['toaddress']}\"><img src=\"styles/{$page->style}/images/icons/find.gif\" title=\"{$lang->fine_emails_to_addr}\" alt=\"{$lang->find}\" /></a></div>"; $table->construct_cell("{$find_from}<div>{$log['toaddress']}</div>");
| $table->construct_cell("<a href=\"javascript:MyBB.popupWindow('index.php?module=tools/mailerrors&action=view&eid={$log['eid']}', 'log_entry', 450, 450);\">{$log['subject']}</a>"); $find_from = "<div class=\"float_right\"><a href=\"index.php?module=tools/mailerrors&toaddress={$log['toaddress']}\"><img src=\"styles/{$page->style}/images/icons/find.gif\" title=\"{$lang->fine_emails_to_addr}\" alt=\"{$lang->find}\" /></a></div>"; $table->construct_cell("{$find_from}<div>{$log['toaddress']}</div>");
|