display error fixed in product_info.php

##old:
if (tep_not_null($product_info['products_ref_const'])) {
echo products_ref_const.' '.$product_info['products_ref_const'];
}
##new
if (tep_not_null($product_info['products_ref_const'])) {
echo PRODUCTS_REF_CONST.' '.$product_info['products_ref_const'];
}

##Full package

More...