* replace "$twig->render()" with "$this->display"

This commit is contained in:
slawkens
2018-05-29 21:29:08 +02:00
parent 68d74a490b
commit c654ea329c
69 changed files with 413 additions and 413 deletions

View File

@@ -120,11 +120,11 @@ if($players > 0)
}
}
echo $twig->render('online.html.twig', array(
$twig->display('online.html.twig', array(
'players' => $players_data,
'record' => $record
));
//search bar
echo $twig->render('online.form.html.twig');
$twig->display('online.form.html.twig');
?>