General fixes

+Completely coded "Players report" in the admin panel, now you can see
any report you want
+Added "Players message", you can now see every message of any player
+Fully coded "IMG/Reports" section, it now works properly
+Fully CSSed reports, they'll now look like in game
+Centered the whole admin panel (because we're in 2018, lul)
This commit is contained in:
iopietro
2018-06-09 19:02:00 +02:00
parent 2e55a7ee61
commit 3504c98bea
51 changed files with 196 additions and 9270 deletions
+2 -9
View File
@@ -31,14 +31,7 @@
<br>
<?php
error_reporting(0);
if($_GET['nid'] and ereg('^[0-9]', $_GET['nid']))
{
include('msg.tpl');
}
elseif($_GET['bid'] and ereg('^[0-9]', $_GET['bid']))
{
include('report.tpl');
}
if($_GET['nid'] && is_numeric($_GET['nid'])) include('msg.tpl');
elseif($_GET['bid'] && is_numeric($_GET['bid'])) include('report.tpl');
?>