okay well I had to edit the boxes themselves so custombox9pal.php actually says so inside it but thats purely cosmetic.. the issue I did find though was in your editconfigpal.php your line reads
[] $CustomBox8Checked[$i] = "checked="checked"";
if ((!$index_include[$i]['custombox8']) || ($index_include[$i]['custombox8'] > 22)) {
$CustomBox8Checked[$i] = "";
}
$CustomBox8Selections[$i] = $blankselection;
if (($index_include[$i]['custombox8']) && ($index_include[$i]['custombox8'] < 23)) {
$selectedselection = "";
$psel = "";
for ($p=0; $p<23; $p++) {
if ($p > 0) {
$psel = $p;
}
if ($p == $index_include[$i]['
custombox1']) {
$selectedselection .= "<option value="$p" selected="selected">$psel</option>";
}
else {
$selectedselection .= "<option value="$p">$psel</option>";
}
}
$CustomBox8Selections[$backone] = $blankselection;
$CustomBox8Selections[$i] = $selectedselection;
}
[/]
and it should have been
[] $CustomBox8Checked[$i] = "checked="checked"";
if ((!$index_include[$i]['custombox8']) || ($index_include[$i]['custombox8'] > 22)) {
$CustomBox8Checked[$i] = "";
}
$CustomBox8Selections[$i] = $blankselection;
if (($index_include[$i]['custombox8']) && ($index_include[$i]['custombox8'] < 23)) {
$selectedselection = "";
$psel = "";
for ($p=0; $p<23; $p++) {
if ($p > 0) {
$psel = $p;
}
if ($p == $index_include[$i]['
custombox8']) {
$selectedselection .= "<option value="$p" selected="selected">$psel</option>";
}
else {
$selectedselection .= "<option value="$p">$psel</option>";
}
}
$CustomBox8Selections[$backone] = $blankselection;
$CustomBox8Selections[$i] = $selectedselection;
}
[/]
otherwise it works fine?
heres the updated zip including the new palboxes?
