@Hippy
I tried those changes and it did not effect this error. The error points to line 5550...
I've looked at the arcade.php file and line 5550 comes up as....
PHP Code:
$inthis = str_ireplace($replacethis,$withthis,$inthis);
The full context of this section is...
PHP Code:
function recursive_str_ireplace($replacethis,$withthis,$inthis)
{
while (1==1)
{
$inthis = str_ireplace($replacethis,$withthis,$inthis);
if(stristr($inthis, $replacethis) === FALSE)
{
RETURN $inthis;
}
}
RETURN $inthis;
}
Any help would be appreciated.