small fix in echo call with variables
This commit is contained in:
parent
a61ffc41ba
commit
cf7f111cf8
1 changed files with 2 additions and 2 deletions
|
@ -12,9 +12,9 @@
|
|||
echo("<p>The Server is: </p>");
|
||||
echo("<h2 class='online status'>online</h2>");
|
||||
echo("<p>running version</p>");
|
||||
echo("<h2>%s</h2><br>", $ms->get_versrion());
|
||||
echo("<h2>%s</h2><br>"), $ms->get_versrion();
|
||||
echo("<p>Players online</p>");
|
||||
echo("<h2>%s / %s</h2>)", $ms->get_current_players(), $ms->get_max_players());
|
||||
echo("<h2>%s / %s</h2>)"), $ms->get_current_players(), $ms->get_max_players();
|
||||
}
|
||||
else {
|
||||
echo("<p>The Server is:</p>");
|
||||
|
|
Loading…
Reference in a new issue