Quote:
Originally Posted by CricketWeb
I got to this step here:
but when I go to the page I get:
Any ideas how I fix this? I'd really like to use this hack 
|
I get edit my post for some strange reason so I'll submit the rest here.
Here's the code:
Quote:
// ###################### Start bits2array #######################
// takes a bitfield and the array describing the resulting fields
function convert_bits_to_array(&$bitfield, $_FIELDNAMES)
{
$bitfield = intval($bitfield);
$arry = array();
foreach ($_FIELDNAMES AS $field => $bitvalue) - this is line 2878
{
if ($bitfield & $bitvalue)
{
$arry["$field"] = 1;
}
else
{
$arry["$field"] = 0;
}
}
return $arry;
}
|
and this was the only part I changed:
Quote:
// declares the arcade image directory
$stylevar['imgdir_arcade'] = "images/arcade";
// get CSS width for outerdivwidth from outertablewidth
|