View Single Post
  #3  
Old 01-22-2016, 11:49 PM
FounderSim FounderSim is offline
Member
 
Join Date: Sep 2014
Posts: 65
Gender: Male
Credits: 7,861
FounderSim is on a distinguished road
Default

Don't believe that was the issue:

Believe the issue is in the constructor of myadopts.php

Code:
if( $this->action != "index"){
				try{
					$this->adopt = new OwnedAdoptable($mysidia->input->get("aid"));	
					if($this->adopt->getOwner() != $mysidia->user->username) throw new NoPermissionException("permission");		
					$this->image = $this->adopt->getImage("gui");
				}
if( $this->action != "index"){, if the page isn't index page of myadopts/, it tries to fetch a pet id ? =)
__________________
Reply With Quote