There is an error in $xsell_query in the file includesmodulesxsell_products.php:


....IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price, specials_new_products_price.....

this gives wrong specials_new_products_price. It gives specials_new_products_price even if the status of special product is 0

IT MUST BE ONLY:

....IF(s.status, s.specials_new_products_price, NULL) as specials_new_products_price.....


NOT FULLY PACKAGE, JUST ONLY includesmodulesxsell_products.php


If you have not made any changes, you can just replace file.

More...