mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-23 11:27:24 +08:00
init
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
<?php
|
||||
require_once("include/bittorrent.php");
|
||||
function bark($msg) {
|
||||
stdhead();
|
||||
stdmsg("Failed", $msg);
|
||||
stdfoot();
|
||||
exit;
|
||||
}
|
||||
dbconn();
|
||||
loggedinorreturn();
|
||||
if (get_user_class() < $staffmem_class)
|
||||
permissiondenied();
|
||||
if ($_POST['setdealt']){
|
||||
$res = sql_query ("SELECT id FROM reports WHERE dealtwith=0 AND id IN (" . implode(", ", $_POST[delreport]) . ")");
|
||||
while ($arr = mysql_fetch_assoc($res))
|
||||
sql_query ("UPDATE reports SET dealtwith=1, dealtby = $CURUSER[id] WHERE id = $arr[id]") or sqlerr();
|
||||
$Cache->delete_value('staff_new_report_count');
|
||||
}
|
||||
elseif ($_POST['delete']){
|
||||
$res = sql_query ("SELECT id FROM reports WHERE id IN (" . implode(", ", $_POST[delreport]) . ")");
|
||||
while ($arr = mysql_fetch_assoc($res))
|
||||
sql_query ("DELETE from reports WHERE id = $arr[id]") or sqlerr();
|
||||
$Cache->delete_value('staff_new_report_count');
|
||||
$Cache->delete_value('staff_report_count');
|
||||
}
|
||||
|
||||
header("Refresh: 0; url=reports.php");
|
||||
Reference in New Issue
Block a user