View Single Post
Old July 18th, 2005, 03:19 PM   #10 (permalink)
prodigy
Member
Verified Customer
 
Join Date: Jul 2005
Posts: 53
Updated the files, and it is now pointing to:

Expand:
http://www.singaporeexpats.com/class...0&script=index

Implode:
http://www.singaporeexpats.com/class...1&script=index

Still shows 404 error ..........

Found this inside misc.php, can you check for me?

if ( $action == "catopts" ) {
// Lets check the need to expand/collapse categories
if ( isset($expand) || isset($implode) ) {
if ( is_numeric($expand) ) {
if ( $expand > 0 && strstr($cpcollapse, ",$expand,") ) {
$cpcollapse = str_replace( ",$expand,", "", $cpcollapse );
setcookie( "cpcollapse", $cpcollapse, time()+2592000 );
}
}

if ( is_numeric($implode) ) {
if ( $implode > 0 && !strstr($cpcollapse, ",$implode,") ) {
$cpcollapse .= ",$implode,";
setcookie( "cpcollapse", $cpcollapse, time()+2592000 );
}
}
}

$more = ( isset($cat) ? "?cat=$cat" : "" );
header( "Location: $script.php$more" );

Please help ..............
}
prodigy is offline   Reply With Quote