View Single Post
  #14  
Old 02-16-2016, 11:41 AM
Kyttias's Avatar
Kyttias Kyttias is offline
Premium Member
 
Join Date: Jan 2014
Posts: 857
Gender: Unknown/Other
Credits: 133,885
Kyttias is on a distinguished road
Default

Okay, get this: If you delete the line that inserts the pet into the database in mao.php, it still gets added. Something tells me it's still using the original adopt.php to do it's work. This is because it's still sending the form data to it!

In view/maoview.php find:
PHP Code:
$adoptForm = new Form("form""adopt""post"); 
And change it to:
PHP Code:
$adoptForm = new Form("form""mao""post"); 
The currency is then going down, but you have to go to another page to see that.


(Still using this:)
PHP Code:
$cost $mysidia->db->select("adoptables", array("cost"), "type='{$adopt->getType()}'")->fetchColumn();
$mysidia->user->changecash(-$cost); 
__________________
Please do not contact me directly outside of Mysidia.
I also cannot troubleshoot code more than two years old - I legit don't remember it.

Last edited by Kyttias; 02-16-2016 at 11:56 AM.
Reply With Quote