|
// do not decrement quantities if products_attributes_filename exists |
|
if ((DOWNLOAD_ENABLED != 'true') || tep_not_null($Qstock->value('products_attributes_filename'))) { |
So !tep_not_null() would be better as v2.3 used
|
// do not decrement quantities if products_attributes_filename exists |
|
if ((DOWNLOAD_ENABLED != 'true') || (!$stock_values['products_attributes_filename'])) { |
oscommerce2/catalog/checkout_process.php
Lines 195 to 196 in de0e97d
So
!tep_not_null()would be better as v2.3 usedoscommerce2/catalog/checkout_process.php
Lines 168 to 169 in de9e922