|
at the bottom of showcat.php remove
echo "$query";
In showproduct.php the query should read like this
$query = "SELECT catname,template FROM {$Globals['pp_db_prefix']}categories where id='$cat'";
$resulta = ppmysql_query($query,$link);
list( $thecatname, $template ) = mysql_fetch_row($resulta);
ppmysql_free_result($resulta);
the extra fields where not moved in 2.9 yet
|