Hey Doze,
I figured I should make a post out of this since it’s a new topic.
The maxigallery.php from the svn version is breaking the link from a picture thumbnail to the single picture element page. Here’s why:
http://www.mysite.com/gallery9.html?amp;pic=50.
The previous link should be:
http://www.mysite.com/gallery9.html?&pic=50.
When I manually change it in the url it works fine. Checking the two different version of the maxigallery.php I found the following to be different:
in the new maxigallery.php
$next_pic_querystr .= "&from_id=".$_REQUEST['from_id'];
in the old maxigallery.php
$next_pic_querystr .= "&from_id=".$_REQUEST['from_id'];
There are several differences of the same thing between the two.
Thanks,
Josh