What should I change here?
function normalizeColumns($albumColumns, $imageColumns) {
global $_zp_current_album, $firstPageImages;
$albcount = max(1, getOption('albums_per_page'));
if (($albcount % $albumColumns) != 0) {
setOption('albums_per_page', $albcount = ((floor($albcount / $albumColumns) + 1) * $albumColumns), false);
}
$imgcount = max(1, getOption('images_per_page'));
if (($imgcount % $imageColumns) != 0) {
setOption('images_per_page', $imgcount = ((floor($imgcount / $imageColumns) + 1) * $imageColumns), false);
}