View Single Post
  #60  
Old 08-15-2014, 04:06 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: 576,105
Hall of Famer is on a distinguished road
Default

I've found the solution to this glitch now, it has something to do with a single line in script file classes/resource/collection/class_linkedhashmap.php. Someone already pointed it out before, but it was back in January so its after Mys v1.3.4 was released. This error will go away in Mys v1.4.0 completely:
http://mysidiaadoptables.com/forum/p...php?issueid=37

To fix this issue, find this line:

PHP Code:
for($entry $this->header->getAfter(); $entry != $this->header$entry $entry->getAfter()){ 
Change it to:

PHP Code:
for($entry $this->header->getAfter(); $entry !== $this->header$entry $entry->getAfter()){ 
It basically changes != into !==, and everything will work like a charm. ^^
__________________


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