forked from sicalpath/tjupt
-
Notifications
You must be signed in to change notification settings - Fork 2
/
deletedisabled.php
39 lines (38 loc) · 1.16 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
<?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']) {
$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();
?>