-
Notifications
You must be signed in to change notification settings - Fork 2
/
tail.php
56 lines (48 loc) · 1.69 KB
/
tail.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
49
50
51
52
53
54
55
56
/***
* author @ [email protected]
***/
<? if ( DEBUG ): ?>
<p></p>
<p><a href="#" id="debug_show"
onclick="$('#debug_show').hide(); $('#debug').show(); return false;">Show
Debug Info</a></p>
<div id="debug" style="display:none">
<?
global $debug_messages;
foreach ( $debug_messages as $d ) {
echo "<h2>{$d['msg']}</h2>\n";
echo "<pre>\n";
print_r($d['var']);
echo "\n</pre>\n";
}
?>
</div>
<? endif ?>
</div>
</div> <!--! end of #container -->
<footer>
© 2011 <a href="FRAUD KILLER OFFICIAL WEBSITE(yet to launch)" target="_blank">fruadkiller</a>
</footer>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="js/libs/jquery-1.7.1.min.js"><\/script>')</script>
<script src="js/datatables/media/js/jquery.dataTables.min.js"></script>
<!-- scripts concatenated and minified via ant build script-->
<script src="js/plugins.js?v=<?= CLIENT_VERSION ?>"></script>
<script src="js/libs/jquery.tools.min.js"></script>
<script src="js/libs/jquery-ui-1.8.18.custom.min.js"></script>
<script src="js/syntaxhighlighter/scripts/shCore.js?v=<?= CLIENT_VERSION ?>"></script>
<script src="js/syntaxhighlighter/scripts/shBrushPhp.js?v=<?= CLIENT_VERSION ?>"></script>
<script src="js/jqueryFileTree/jqueryFileTree.js?v=<?= CLIENT_VERSION ?>"></script>
<script>var docRoot = '<?= $_SERVER['DOCUMENT_ROOT'] ?>';</script>
<script src="js/plugins.js?v=<?= CLIENT_VERSION ?>"></script>
<script src="js/script.js?v=<?= CLIENT_VERSION ?>"></script>
<!-- end scripts-->
<!-- runtime scripts -->
<?
if ( $callback !== null & function_exists($callback) ) {
call_user_func($callback);
}
?>
<!-- end runtime scripts -->
</body>
</html>