# HG changeset patch # User Nathan Phillip Brink # Date 2011-03-21 21:01:37 # Node ID ded54846d93b0164578bbf9e235f155fec7e5f57 # Parent 0d981269f3d696fdeef39103a5cbb1f33699ddc4 Reduce the pagination size from 256 to 64. diff --git a/inc/class.schedule.php b/inc/class.schedule.php --- a/inc/class.schedule.php +++ b/inc/class.schedule.php @@ -236,7 +236,7 @@ class Schedule $filled = false; $time = array(700,730,800,830,900,930,1000,1030,1100,1130,1200,1230,1300,1330,1400,1430,1500,1530,1600,1630,1700,1730,1800,1830,1900,1930,2000,2030,2100,2130, 2200); - define('SP_PERMUTATIONS_PER_PAGE', 256); /** @TODO: Define this in config.inc */ + define('SP_PERMUTATIONS_PER_PAGE', 64); /** @TODO: Define this in config.inc */ $npages = ceil($this->nPermutations / SP_PERMUTATIONS_PER_PAGE); $page = 0;