dpbeatley
04-29-2005, 12:09 AM
Hi,
In the PAGED_ARCHIVE addon, one of the reasons the CATEGORY drop down list fails is due to an extra AND invalid &AMP entity in the code.
Here is the offending snip
$browse_select .= "<option value='index.php?x=browse&amp;amp;category=$id&amp ;pagenum=1'>$name (" .$count .")</option>";
} // end if pagenum!=""
else {
// use the original browse category menu
$browse_select .= "<option value='index.php?x=browse&amp;amp;category=$id'>$name (" .$count .")</option>";};
Delete the amp; that follows the correct &amp; on both lines and all is well with the gods.
Cheers
In the PAGED_ARCHIVE addon, one of the reasons the CATEGORY drop down list fails is due to an extra AND invalid &AMP entity in the code.
Here is the offending snip
$browse_select .= "<option value='index.php?x=browse&amp;amp;category=$id&amp ;pagenum=1'>$name (" .$count .")</option>";
} // end if pagenum!=""
else {
// use the original browse category menu
$browse_select .= "<option value='index.php?x=browse&amp;amp;category=$id'>$name (" .$count .")</option>";};
Delete the amp; that follows the correct &amp; on both lines and all is well with the gods.
Cheers