Hello,
I do use 1.6a on my online site since end of April.
I do enjoy 1.6a a lot !
The best Zenphoto release.
I've got two remarks and one bug issue.
- Remark 1 : admin-edit.php is not fully translated (I know 1.6a is alpha)
Example : "View Image" button (top left) instead of "Voir Image"
- Remark 2 :
Applying changes on page X (X>1) example, X=5
using /zp-core/admin-edit.php?page=edit&tagsort...
returns to page one instead of 5
But changes are ok
It's not a problem, just a remark !
- Bug : function getAlbumURL in template-functions.php gives the wrong page number in some circumstances.
1 Using a dynamic album
2 Page of dynamic album is >1 (example 5)
3 $album->getLink($page); will add page 5 that might not exist on the album link (album link is correct, page number is wrong)
I know I must not change any file in zp-core folder.
However, editing template-functions.php
I set
$page = 1;
instead of
$page = getAlbumPage($album);
I will use the official template-functions.php file upon 1.6 release.