mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-21 21:38:55 +01:00
* CalDAV/Resources: fixed only first N resources were available in CalDAV (N = common preference how many entries to show)
This commit is contained in:
parent
a2c2655ef0
commit
ba863d8e6f
@ -1232,6 +1232,8 @@ class groupdav_principals extends groupdav_handler
|
|||||||
self::$all_resources = array();
|
self::$all_resources = array();
|
||||||
$query = array(
|
$query = array(
|
||||||
'show_bookable' => true, // ignore non-bookable resources
|
'show_bookable' => true, // ignore non-bookable resources
|
||||||
|
'start' => 0,
|
||||||
|
'num_rows' => 10000, // return all aka first 10000 entries
|
||||||
);
|
);
|
||||||
if (self::$resources->get_rows($query, $rows, $readonlys))
|
if (self::$resources->get_rows($query, $rows, $readonlys))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user