try to use printf

This commit is contained in:
Jannis Portmann 2020-10-06 13:49:23 +02:00
parent cf7f111cf8
commit 14ffeaa7aa

View file

@ -12,7 +12,7 @@
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();
printf("<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();
}