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
|
<?php ///////////////////////////////////////////// // Shadowed Portal // ///////////////////////////////////////////// // Copyright (C) 2003 by Shadowed Works. // // Please read our terms and conditions // // at http://www.shad0wed.com/. // ///////////////////////////////////////////// // !Donnot Edit This File! // ///////////////////////////////////////////// global $viv; global $mod; global $act; global $do; global $act; global $id; global $tp; global $w; global $method; global $board; global $user; global $pass; global $cat; global $linkback; global $HTTP_POST_VARS; global $_GET; $version = 5.1; $date = date("D M d, Y at H:i:s"); $qs = $_SERVER['QUERY_STRING'];
// Unlog User at [what] minutes. // $unlog_at = 7; // Delete User at [what] minutes. // $user_delete_at = 10080; // Rank out of danger of deletion. // $safe_rank_min = 1;
require("custom_variables.php"); $online = 0; $rank = 0; $u_rank = 0; $t_days = date("d"); $t_hours = date("H"); $t_minutes = date("i"); $t_seconds = date("s"); $t_minutes_f = ($t_days * 24 * 60) + ($t_hours * 60) + $t_minutes + ($t_seconds / 60); $messages = ""; $illegals = "$,&&,||,\\,<!--online-->,<!--/online-->,<!--offline-->,<!--/offline-->"; $dir_illegals = "\\,/,%,&,|, ,\n"; $var_code = ""; $vxcode_info = "<b>Tags:</b><br> <b>[i]</b>italic<b>[/i]</b> = <i>italic</i><br> <b>[b]</b>bold<b>[/b]</b> = <b>bold</b><br> <b>[u]</b>underline<b>[/u]</b> = <u>underline</u><br> <b>[br]</b> = (Same effect as pressing ENTER when typing)<br> <b>[link]</b>link url<b>[x]</b>link text<b>[/link]</b> = <a href='link url'>link text</a><br> <b>[img]</b>image url<b>[/img]</b> = (A Image)<br> <br> <i>(Note: Tags are case sensitive.)</i> </br> "; ?>
|