View Single Post
  #4  
Old 01-23-2016, 02:49 AM
Hwona's Avatar
Hwona Hwona is offline
Member
 
Join Date: Mar 2013
Posts: 620
Gender: Female
Credits: 49,987
Hwona is on a distinguished road
Default Re

Quote:
Originally Posted by FounderSim View Post
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 ? =)
Uh... does v.1.3.4 need the try{}?
Reply With Quote