bug in the code. lines 1025-1028 in the function eo_remove_product_from_order. i have shown my correction (although there are other possibilities):

PHP Code:
// original code
                
$check $db->Execute(
                    
'SELECT `p`.`products_quantity` FROM `' TABLE_PRODUCTS '` ' .
                     
'WHERE `p`.`products_id` = \'' . (int)$query->fields['products_id'] . '\''
                
);

// correction

                
$check $db->Execute(
                    
'SELECT `p`.`products_quantity` FROM `' TABLE_PRODUCTS '` p ' .
                     
'WHERE `p`.`products_id` = \'' . (int)$query->fields['products_id'] . '\''
                
); 
best.