Summary:
parse_adjustment adds instead of subtract
Detailed Description:
class.cg_ecomm_productinfo.php line 97:
case '-':
$v = (float) substr($adjustment,1);
$price = $base_price + $v;
break;
should be subtructing instead of adding:
case '-':
$v = (float) substr($adjustment,1);
$price = $base_price - $v;
break;