View Single Post
  #2  
Old 03-24-2011, 10:08 AM
fadillzzz fadillzzz is offline
Dev Staff
 
Join Date: Jan 2010
Posts: 501
Gender: Male
Credits: 41,500
fadillzzz is an unknown quantity at this point
Default

Seems like people always forgot to filter the (-) minus sign.
Anyway, I think this should fix the problem.
Open your trade.php
find this code
PHP Code:
$adoptwanted $_POST["adoptwanted"];
$adoptgiven $_POST["adoptgiven"];
$cashgiven $_POST["cashgiven"];
$message $_POST["message"]; 
Just below that, add
PHP Code:
$cashgiven abs($cashgiven); 
Reply With Quote