for people that are still getting the follow error when creating a new tournament
Warning: Wrong parameter count for str_replace() in [path]\tournament.php on line 642
it already been posted howto fix it by BananaLive
Find in
tournament.php
PHP Code:
$hour = str_replace(".5", "", $hour, $count);
if ($count == 1) {
Replace with
PHP Code:
$hourb = str_replace(".5", "", $hour);
if ($hourb != $hour) {
thats what i did and it worked fine