I have double-checked all the code and the values (if valid) for any of the individual values, e.g. size, margin, per row, per page, etc. are all checked FIRST to see if the module value is used, then it falls back onto the gallery value, which in your case will be 100 x 100.
The code extract proves that this code is working like this. You can try to put a print_r($size); AFTER this routine, to see what value it puts out.
Code:
// Get gallery size, module override or gallery
$chksize = deserialize($this->gallery_size);
$fullsize = 0;
if ($chksize[0] > 0 || $chksize[1] > 0)
{
$size = $this->gallery_size;
$fullsize = $this->gallery_fullsize;
$limit = $this->gallery_numberOfImages ? $this->gallery_numberOfImages : $limit;
}
else
{
$size = deserialize($objGalleries->size);
$fullsize = $objGalleries->fullsize;
}
Bookmarks