diff options
author | Christoph Wickert <cwickert@suse.de> | 2017-03-18 12:59:25 +0100 |
---|---|---|
committer | Christoph Wickert <cwickert@suse.de> | 2017-03-18 12:59:25 +0100 |
commit | 07b35b7bae3c3bc684209eb4db20943276afff85 (patch) | |
tree | a0d1fe51da6a04d05f9577f8fb82c911c36ffe9d /apps/dav | |
parent | 3c66ad64e626cb602685a640c235d472f0777a53 (diff) | |
download | nextcloud-server-07b35b7bae3c3bc684209eb4db20943276afff85.tar.gz nextcloud-server-07b35b7bae3c3bc684209eb4db20943276afff85.zip |
DummyGetResponsePlugin: ownCloud -> Nexcloud
Signed-off-by: Christoph Wickert <cwickert@suse.de>
Diffstat (limited to 'apps/dav')
-rw-r--r-- | apps/dav/lib/Connector/Sabre/DummyGetResponsePlugin.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/Connector/Sabre/DummyGetResponsePlugin.php b/apps/dav/lib/Connector/Sabre/DummyGetResponsePlugin.php index 102c902aed0..a9e339f9ffc 100644 --- a/apps/dav/lib/Connector/Sabre/DummyGetResponsePlugin.php +++ b/apps/dav/lib/Connector/Sabre/DummyGetResponsePlugin.php @@ -58,7 +58,7 @@ class DummyGetResponsePlugin extends \Sabre\DAV\ServerPlugin { */ function httpGet(RequestInterface $request, ResponseInterface $response) { $string = 'This is the WebDAV interface. It can only be accessed by ' . - 'WebDAV clients such as the ownCloud desktop sync client.'; + 'WebDAV clients such as the Nextcloud desktop sync client.'; $stream = fopen('php://memory','r+'); fwrite($stream, $string); rewind($stream); |