1
Hi:
I just installed upgraded to xoopsgallery 1.3.3.2 on XOOPS 2.05. The install run fine,howevere, whenever I browse my gallery, I get the follwing text at the top of the page:
($absIndex, 0); } else if ($newIndex == sizeof($visible)) { // Move to end $this->moveAlbumAbsolute($absIndex, sizeof($this->albumList)-1); } else { // Move to relative spot $this->moveAlbumAbsolute($absIndex, $absNewIndex); } return; } function moveAlbumAbsolute($index, $newIndex) { /* Pull album out */ $name = array_splice($this->albumOrder, $index, 1); /* Add it back in */ array_splice($this->albumOrder, $newIndex, 0, $name); } function getVisibleAlbums($user) { global $gallery; $list = array(); foreach ($this->albumList as $album) { if ($user->canReadAlbum($album) && $album->isRoot()) { array_push($list, $album); } } return $list; } function save() { global $gallery; $success = 0; $dir = $gallery->app->albumDir; return safe_serialize($this->albumOrder, "$dir/albumdb.dat"); } } ?> seudo() { return true; } } ?>
Also, Album names have "$i++; " appended after them.
ANy help you give will be appreciated, you can see my installation at
http://www.jabjabposse.com/modules/xoopsgallery/H.