I'm not sure if there is a reason fo rit, but I found a problem with the instructions for Step 5.
PHP Code:
$boxurl = $PHP_SELF . "?" . $_SERVER['QUERY_STRING'];
$boxurl = str_replace("s=$session[sessionhash]", "", $boxurl);
$boxurl = preg_replace("/(&changestyle=(.{0,2}))/", "", $boxurl);
$boxurl = str_replace("?&", "?", $boxurl);
if(substr($boxurl, -1)!="&"){
$boxurl .= "&";
}
$dropdownbits = "";
foreach($allstyles as $key=>$val) {
$stylesel = ($styleid==$key) ? "selected=\"selected\"" : "";
eval("\$dropdownbits .= \"".gettemplate('nc_stylechangebit')."\";");
}
eval("\$dropdownbox = \"".gettemplate('header_stylebox')."\";");
I found that on installing this on my test board the
nc_stylechangebit needed to be changed to
header_styleboxbit which is a template the instructions tell you to make in Step 6.
Anyway since I'm still just learning the finer points of php it might just be me, but I thought I should bring it up.