fix: work on very basic PHP remediation
This commit is contained in:
parent
b18b795ab3
commit
6ee9078e0c
117 changed files with 216 additions and 208 deletions
admin
|
@ -1,7 +1,5 @@
|
|||
<?php
|
||||
|
||||
set_magic_quotes_runtime(false);
|
||||
|
||||
include("config.inc");
|
||||
include("as_log.inc");
|
||||
|
||||
|
@ -213,27 +211,27 @@ foreach ($games as $name => $game) {
|
|||
<p>Games can have the following status:</p>
|
||||
<table>
|
||||
<tr>
|
||||
<?printStatus('PRE');?>
|
||||
<?php printStatus('PRE');?>
|
||||
<td>The game is configured, but is hidden for now</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?printStatus('READY');?>
|
||||
<?php printStatus('READY');?>
|
||||
<td>The game is visible, but ticks have not started</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?printStatus('RUNNING');?>
|
||||
<?php printStatus('RUNNING');?>
|
||||
<td>The game is running normally</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?printStatus('VICTORY');?>
|
||||
<?php printStatus('VICTORY');?>
|
||||
<td>The game is still running but someone reached victory</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?printStatus('ENDING');?>
|
||||
<?php printStatus('ENDING');?>
|
||||
<td>The game is still available but is about to end.</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<?printStatus('FINISHED');?>
|
||||
<?php printStatus('FINISHED');?>
|
||||
<td>The game is no longer running and only visible through the rankings page</td>
|
||||
</tr>
|
||||
</table>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue