]> source.dussan.org Git - nextcloud-server.git/commitdiff
DummyGetResponsePlugin: ownCloud -> Nexcloud 3913/head
authorChristoph Wickert <cwickert@suse.de>
Sat, 18 Mar 2017 11:59:25 +0000 (12:59 +0100)
committerChristoph Wickert <cwickert@suse.de>
Sat, 18 Mar 2017 11:59:25 +0000 (12:59 +0100)
Signed-off-by: Christoph Wickert <cwickert@suse.de>
apps/dav/lib/Connector/Sabre/DummyGetResponsePlugin.php

index 102c902aed07461e88cb0a3f8eebcfffaf5e21bb..a9e339f9ffc8d6a0c34358b9c1bcb5dca61c6fb8 100644 (file)
@@ -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);