From cf7f111cf8202b6f3b37e51f0cf43a5aef8d5c01 Mon Sep 17 00:00:00 2001 From: thisfro Date: Tue, 6 Oct 2020 13:47:11 +0200 Subject: [PATCH] small fix in echo call with variables --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index dd2cd88..dee06cc 100644 --- a/index.php +++ b/index.php @@ -12,9 +12,9 @@ echo("

The Server is:

"); echo("

online

"); echo("

running version

"); - echo("

%s


", $ms->get_versrion()); + echo("

%s


"), $ms->get_versrion(); echo("

Players online

"); - echo("

%s / %s

)", $ms->get_current_players(), $ms->get_max_players()); + echo("

%s / %s

)"), $ms->get_current_players(), $ms->get_max_players(); } else { echo("

The Server is:

");