mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-27 18:33:39 +01:00
* Calendar/CalDAV: do NOT limit number of returned events for GET requests with download parameter
This commit is contained in:
parent
342808353d
commit
3467763dea
@ -1291,7 +1291,8 @@ class CalDAV extends HTTP_WebDAV_Server
|
||||
$propfind_options = array(
|
||||
'path' => $options['path'],
|
||||
'depth' => 1,
|
||||
'other' => [['name' => 'nresults', 'data' => $chunk_size]],
|
||||
// do NOT limit response, if GET parameter download is given
|
||||
'other' => isset($_GET['download']) ? [] : [['name' => 'nresults', 'data' => $chunk_size]],
|
||||
);
|
||||
$files = array();
|
||||
if (($ret = $this->PROPFIND($propfind_options,$files)) !== true)
|
||||
|
Loading…
Reference in New Issue
Block a user