Hi everybody,
I applied this mod to cpg 1.4.25 and I encountred the same old problem of random photos and last posted photos. Noone of the solution proposed worked! The solution was modifing the theme.php like this:
version proposed in the mod:
function lightbox_list($picId) {
################################################
//Set max number of images
$max = 100; //(-1 for all pics in album)
################################################
global $lang_display_image_php, $CONFIG;
$i = 0;
$pid = $picId['pid'];
$aid = (empty($_GET['album'])) ? $picId['aid'] : $_GET['album'];
corrected versione:
function lightbox_list($picId) {
################################################
//Set max number of images
$max = 100; //(-1 for all pics in album)
################################################
global $lang_display_image_php, $CONFIG;
$i = 0;
$pid = $picId['pid'];
$aid = (empty($_GET['album']) || $_GET['album']=='random' || $_GET['album']=='lastup') ? $picId['aid'] : $_GET['album'];
bye bye
pietro
ps: I apologize for my bad English!