Quote:
Originally Posted by gamerscms
New error found, time is not updating when you click edit in tournament details.
Code:
Could not find phrase ''.
Code:
Warning: Wrong parameter count for str_replace() in [path]/tournament.php on line 754
|
Sorry, count in str_repace() is not compatabile with PHP 4
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) {
I don't have that error with the PM, have you edited the templates? Are you using PM tournament details to self or PM all competitors?