Ok, I found where the problem is, I just don't know how to tell you how to fix it without replacing an entire action (fun fun). All I can say is cross your fingers!
Find:
PHP Code:
// ###################### Start GENERAL OPTIONS Update #######################
if ($action=="doupdateoptions") {
// only process the files if changes were made
if (is_array($HTTP_POST_FILES)) {
if ($HTTP_POST_FILES[scoreicon]['name'] != "")
$scoreicondata = vpaupload("scoreicon");
else
$scoreicondata = "";
if ($HTTP_POST_FILES[kingicon]['name'] != "")
$kingicondata = vpaupload("kingicon");
else
$kingicondata = "";
} else {
$scoreicondata = "";
$kingicondata = "";
}
$DB_site->query("UPDATE arcadeconfig
SET path='$thepath',usescoreicon='$usescoreicon',usekingicon='$usekingicon'
".iif(($scoreicon != "") || ($deletescoreicon == 1),",scoreiconname='$scoreicon_name', scoreicondata='$scorei_d'","")."
".iif(($kingicon != "") || ($deletekingicon == 1),",kingiconname='$kingicon_name', kingicondata='$kingi_d'",", passtimeout='$passtimeout', epergamecost='$epergamecost', earcadepass='$earcadepass', eaph='$eaph', ejackpot='$ejackpot'")."
WHERE arcadeid='$arcadeid'");
// update champ system setting separately (saves queries!)
$DB_site->query("UPDATE setting SET value='$champsystem' WHERE varname='vpa_champsystem'");
// must update templates so site will reflect change
$optionstemplate=generateoptions();
$DB_site->query("UPDATE template SET template='$optionstemplate' WHERE title='options'");
echo "<b>Arcade options updated!</b><br><br>";
// go back to change options screen
$action = "changeoptions";
}
Replace it ALL with:
PHP Code:
// ###################### Start updateoptions #######################
if ($action=="doupdateoptions") {
// only process icons if changes were made
if ($scoreicon != "") {
// check for valid extension
$extension=strtolower(substr(strrchr($scoreicon_name,"."),1));
if (($extension != "gif") and ($extension != "jpg") and ($extension != "jpeg") and ($extension != "png")) {
echo "vbProArcade Error: " . $scoreicon_name . " is not a valid file type for icons (only gif/jpg/png are supported)<br><br>";
$scoreicon = "";
} else {
// retrieve file data
$scorei_f = fopen($scoreicon, "r");
$scorei_d = addslashes(fread($scorei_f, filesize($scoreicon)));
}
}
// only process icons if changes were made
if ($kingicon != "") {
// check for valid extension
$extension=strtolower(substr(strrchr($kingicon_name,"."),1));
if (($extension != "gif") and ($extension != "jpg") and ($extension != "jpeg") and ($extension != "png")) {
echo "vbProArcade Error: " . $kingicon_name . " is not a valid file type for icons (only gif/jpg/png are supported)<br><br>";
$kingicon = "";
} else {
// retrieve file data
$kingi_f = fopen($kingicon, "r");
$kingi_d = addslashes(fread($kingi_f, filesize($kingicon)));
}
}
$DB_site->query("UPDATE arcadeconfig
SET path='$thepath',usescoreicon='$usescoreicon',usekingicon='$usekingicon'
".iif(($scoreicon != "") || ($deletescoreicon == 1),",scoreiconname='$scoreicon_name', scoreicondata='$scorei_d'","")."
".iif(($kingicon != "") || ($deletekingicon == 1),",kingiconname='$kingicon_name', kingicondata='$kingi_d'",", passtimeout='$passtimeout', epergamecost='$epergamecost', earcadepass='$earcadepass', eaph='$eaph', ejackpot='$ejackpot'")."
WHERE arcadeid='$arcadeid'");
// update champ system setting separately (saves queries!)
$DB_site->query("UPDATE setting SET value='$champsystem' WHERE varname='vpa_champsystem'");
// $DB_site->query("UPDATE template SET template=CONCAT(template,'vpa_champsystem = $champsystem') WHERE title='options'");
$optionstemplate=generateoptions();
$DB_site->query("UPDATE template SET template='$optionstemplate' WHERE title='options'");
echo "<b>Arcade options updated!</b><br><br>";
// go back to change options screen
$action = "changeoptions";
}
And I don't mean vB version, I mean arcade version.