I get an error as below when saving changes made to the Members area Catergory via admin. I think the problem is to do with UBB threads 6.3 (old version) because in a similar issue AFTER UPGRADE TO 5.13 you helped me before when stats failed due to changed labeling in threads upgrades not present in my older version.
Here is the problem:
Warning Mysql_fetch_row (): supplied is not a valid MySQL result resource in
home/httpd/site/encaustic/htdocs/teach/pp_inc.php on line 2466
Here's line 2466 alone:
list( $parent ) = mysql_fetch_row($catp);
Here is the line in context:
}
function updateparents( $parent ) {
global $Globals, $link;
do {
catlist( $parent );
$queryp = "SELECT parent FROM {$Globals['pp_db_prefix']}categories WHERE id=$parent";
$catp = ppmysql_query($queryp, $link);
list( $parent ) = mysql_fetch_row($catp);
ppmysql_free_result( $catp );
} while( $parent != 0 );
return;
}

tHANKS