I do not normally agree to give support to people who do not click install, so i'd appreciate it if you can do that now
Try this in itrader_main.php
Find:
Code:
$buyerwants = strtolower($buyerwants);
Add Below:
Code:
$buyerwants = addslashes($buyerwants);
Find:
Code:
$sellerproducts = strtolower($sellerproducts);
Add Below:
Code:
$sellerproducts= addslashes($sellerproducts);
Let me know if that works.