Zeile 3 | Zeile 3 |
---|
* MyBB 1.2 * Copyright � 2006 MyBB Group, All Rights Reserved *
|
* MyBB 1.2 * Copyright � 2006 MyBB Group, All Rights Reserved *
|
* Website: http://www.mybboard.com * License: http://www.mybboard.com/eula.html
| * Website: http://www.mybboard.net * License: http://www.mybboard.net/eula.html
|
*
|
*
|
* $Id: modlogs.php 2148 2006-08-27 04:10:33Z Tikitiki $
| * $Id: modlogs.php 3285 2007-09-01 05:49:38Z Tikitiki $
|
*/
define("IN_MYBB", 1);
| */
define("IN_MYBB", 1);
|
Zeile 74 | Zeile 74 |
---|
if($orderby == "nameasc") { $order = "u.username";
|
if($orderby == "nameasc") { $order = "u.username";
|
$orderby = "ASC";
| $orderdir = "ASC";
|
} else { $order = "l.dateline";
|
} else { $order = "l.dateline";
|
$orderby = "DESC";
| $orderdir = "DESC";
|
} $query = $db->simple_select(TABLE_PREFIX."moderatorlog l LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=l.uid)", "COUNT(dateline) AS count", $squery); $rescount = $db->fetch_field($query, "count");
| } $query = $db->simple_select(TABLE_PREFIX."moderatorlog l LEFT JOIN ".TABLE_PREFIX."users u ON (u.uid=l.uid)", "COUNT(dateline) AS count", $squery); $rescount = $db->fetch_field($query, "count");
|
Zeile 201 | Zeile 201 |
---|
makeinputcode($lang->prune_days, "days", 30, 4); endtable(); endform($lang->prune_log, $lang->reset_button);
|
makeinputcode($lang->prune_days, "days", 30, 4); endtable(); endform($lang->prune_log, $lang->reset_button);
|
| cpfooter();
|
} ?>
| } ?>
|