Try this one without upgrading:
In /admincp/arcade.php
Find:
if (intval($config['bgcolor'])==0)
{
$config['bgcolor']="000000";
}
Replace:
if (!(intval($config['bgcolor'],16)))
{
$config['bgcolor']="000000";
}
Repeat this with another instance.
Find:
if (intval($IN['bgcolor'])==0)
{
$IN['bgcolor'] = "000000";
}
Replace:
if (!(intval($IN['bgcolor'],16)))
{
$IN['bgcolor']="000000";
}
Hope this help