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. ^^