diff options
author | Vincent Petry <pvince81@owncloud.com> | 2015-11-27 15:38:45 +0100 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2015-11-27 15:38:45 +0100 |
commit | 40172e252b9141f76a50413e7ae58ba686bd7c2a (patch) | |
tree | a93e90f6724b4c0554242e6c6f2da016010b151d /build/integration/features/bootstrap/WebDav.php | |
parent | b99bd7f4fce127e556532d5e0d289957d9548e83 (diff) | |
download | nextcloud-server-40172e252b9141f76a50413e7ae58ba686bd7c2a.tar.gz nextcloud-server-40172e252b9141f76a50413e7ae58ba686bd7c2a.zip |
Use depth 1 and valid properties to get a list
Diffstat (limited to 'build/integration/features/bootstrap/WebDav.php')
-rw-r--r-- | build/integration/features/bootstrap/WebDav.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/build/integration/features/bootstrap/WebDav.php b/build/integration/features/bootstrap/WebDav.php index f38c7bec754..20c2d0f7994 100644 --- a/build/integration/features/bootstrap/WebDav.php +++ b/build/integration/features/bootstrap/WebDav.php @@ -78,7 +78,8 @@ trait WebDav{ $client = new SClient($settings); $response = $client->propfind($this->davPath . "/", array( - '{DAV:}displayname', + '{DAV:}getetag', + 1 )); print_r($response); |