View Single Post
  #2  
Old 03-01-2013, 11:18 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 598,601
Hall of Famer is on a distinguished road
Default

I did not look much into the detail, but it seems that there's something wrong with this line:

PHP Code:
$mysidia->db->update("owned_adoptables", array("owner" => '{$user}',"selling" => 'no'), "aid ='$adopt->aid'"); 
which should be:

PHP Code:
$mysidia->db->update("owned_adoptables", array("owner" => $user"selling" => 'no'), "aid ='{$adopt->aid}'"); 
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote