mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-09-02 00:27:12 +00:00
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:
@@ -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');
|
||||
?>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user