From d3465e10a8073d6fc214682f5db002b334b86871 Mon Sep 17 00:00:00 2001 From: nathangray Date: Tue, 18 Oct 2016 11:11:57 -0600 Subject: [PATCH] Remove limit on resources selection options in sitemgr modules --- calendar/sitemgr/class.module_calendar_planner.inc.php | 2 +- calendar/sitemgr/class.module_calendar_week.inc.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/calendar/sitemgr/class.module_calendar_planner.inc.php b/calendar/sitemgr/class.module_calendar_planner.inc.php index 4e41c13f4f..61a1482bf5 100644 --- a/calendar/sitemgr/class.module_calendar_planner.inc.php +++ b/calendar/sitemgr/class.module_calendar_planner.inc.php @@ -173,7 +173,7 @@ class module_calendar_planner extends Module } $query = ''; - $options = array('start' => 0, 'num_rows' => 50); + $options = array('start' => 0); $acl = new Acl($anon_user); $acl->read_repository(); diff --git a/calendar/sitemgr/class.module_calendar_week.inc.php b/calendar/sitemgr/class.module_calendar_week.inc.php index e947e4ca51..f1d125414a 100644 --- a/calendar/sitemgr/class.module_calendar_week.inc.php +++ b/calendar/sitemgr/class.module_calendar_week.inc.php @@ -191,7 +191,7 @@ class module_calendar_week extends Module // Resources $query = ''; - $options = array('start' => 0, 'num_rows' => 50); + $options = array('start' => 0); $acl = new Acl($anon_user); $acl->read_repository();