|
Here is the fix in uploadproduct.php
find this
list( $pptemplate ) = mysql_fetch_row($adtypes);
ppmysql_free_result($adtypes);
change to this
list( $pptemplate, $adtype ) = mysql_fetch_row($adtypes);
ppmysql_free_result($adtypes);
$Globals['cattemp'] = htmlspecialchars($pptemplate);
Last edited by Chuck S; July 27th, 2005 at 02:29 PM.
|