Remove limit on resources selection options in sitemgr modules

This commit is contained in:
nathangray 2016-10-18 11:11:57 -06:00
parent 8599464e3b
commit d3465e10a8
2 changed files with 2 additions and 2 deletions

View File

@ -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();

View File

@ -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();