If you allow Bulk Upload and limit number of images in an album, IP.Gallery always accept wrong numbers of imagens on a Zip File. If you set 10, it'll only accept 9.
To fix this bug, open sources/components_public/gallery/post.php and find:
To fix this bug, open sources/components_public/gallery/post.php and find:
if( ( intval($ttl_images) + count($data) ) >= $this->ipsclass->member['g_img_album_limit'] )Change to:
if( ( intval($ttl_images) + count($data) ) > $this->ipsclass->member['g_img_album_limit'] )Reported and fixed on IP.Gallery 3.0.0!













