Log in

View Full Version : Fix Game Back ground Color


duncan99
11-28-2007, 12:47 PM
This little fix for those can't wait for the next release. It works for all previous versions..

In /admincp/arcade.php (around line 2925)

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";
}

Thats it !! Done.
Hope this help :)

Note: This fix only effects when a new game install or edit a game background, it has nothing to do with the game itself.