-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetclass.php
More file actions
83 lines (62 loc) · 2.21 KB
/
setclass.php
File metadata and controls
83 lines (62 loc) · 2.21 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php
/**
**************************
** FreeTSP Version: 1.0 **
**************************
** http://www.freetsp.info
** https://github.com/Krypto/FreeTSP
** Licence Info: GPL
** Copyright (C) 2010 FreeTSP v1.0
** A bittorrent tracker source based on TBDev.net/tbsource/bytemonsoon.
** Project Leaders: Krypto, Fireknight.
**/
require_once(dirname(__FILE__).DIRECTORY_SEPARATOR.'functions'.DIRECTORY_SEPARATOR.'function_main.php');
require_once(FUNC_DIR.'function_user.php');
require_once(FUNC_DIR.'function_vfunctions.php');
db_connect();
logged_in();
illegal_access($page, UC_MODERATOR);
if ($CURUSER['override_class'] != 255)
{
error_message_center("info", "Warning", "You need to Restore your Class, before you can change it again !!.");
}
//-- Process The Querystring - No Security Checks Are Done As A Temporary Class Higher Than The Actual Class Mean Absoluetly Nothing. --//
if ($_GET['action'] == 'editclass')
{
$newclass = 0 + $_GET['class'];
$returnto = $_GET['returnto'];
sql_query("UPDATE users
SET override_class = ".sqlesc($newclass).
WHERE id = ".$CURUSER['id']); //-- Set Temporary Class --
header("Location: ".$site_url."/".$returnto);
die();
}
site_header("Set override class for ".$CURUSER["username"]);
print("<form method='get' action='setclass.php'>");
print("<input type='hidden' name='action' value='editclass' />");
print("<input type='hidden' name='returnto' value='index.php' />"); //-- Change To Any Page You Want --//
begin_frame("Allows you to Change your User Class on the fly.",true,5,true);
begin_table();
print("<tr>
<td class='colhead'>Class <select name='class'>");
$maxclass = get_user_class() - 1;
for ($i = 0; $i <= $maxclass; ++$i)
{
$currentclass = get_user_class_name($i);
if ($currentclass)
print("<option value=\"$i\"".">".get_user_class_name($i)."</option>\n");
}
print("</select>
</td>
</tr>");
print("<tr>
<td class='rowhead' align='center'>
<input type='submit' class='btn' value='Okay'/>
</td>
</tr>");
end_table();
end_frame();
print("</form>
<br />");
site_footer();
?>