-
Notifications
You must be signed in to change notification settings - Fork 0
/
deletedisabled.php
executable file
·48 lines (47 loc) · 1.26 KB
/
deletedisabled.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
require "include/bittorrent.php";
dbconn();
loggedinorreturn();
require_once(get_langfile_path());
if (get_user_class() < UC_SYSOP)
permissiondenied();
$shownotice=false;
if ($_SERVER["REQUEST_METHOD"] == "POST")
{
if ($_POST['sure'])
{
$delres = sql_query("SELECT id, username FROM users WHERE enabled='no'");
while ($arr = mysql_fetch_assoc($delres)){
record_op_log($CURUSER['id'],$arr['id'],$arr['username'],'del','被禁用的账号');
}
$res=sql_query("DELETE FROM users WHERE enabled='no'");
$deletecount=mysql_affected_rows();
$shownotice=true;
}
}
stdhead($lang_deletedisabled['head_delete_diasabled']);
begin_main_frame();
?>
<h1 align="center"><?php echo $lang_deletedisabled['text_delete_diasabled']?></h1>
<?php
if ($shownotice)
{
?>
<div style="text-align: center;"><?php echo $deletecount.$lang_deletedisabled['text_users_are_disabled']?></div>
<?php
}
else
{
?>
<div style="text-align: center;"><?php echo $lang_deletedisabled['text_delete_disabled_note']?></div>
<div style="text-align: center; margin-top: 10px;">
<form method="post" action="?">
<input type="hidden" name="sure" value="1" />
<input type="submit" value="<?php echo $lang_deletedisabled['submit_delete_all_disabled_users']?>" />
</form>
</div>
<?php
}
end_main_frame();
stdfoot();
?>