|
Interesting this is in the adm-cats.php file
$query = "UPDATE {$Globals['pp_db_prefix']}categories SET products=0, lastproduct=0 WHERE id=$catid";
$resulta = ppmysql_query($query, $link);
I think its a matter of the pp-inc.php and the caching
You can at line 462 after this
$resultb = ppmysql_query($query,$link);
add this
upgradecategories($catid);
and try it out
|