diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2017-03-19 14:08:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-19 14:08:34 +0100 |
commit | 6677963902297d95dd7f73854e2a6b1ea3873a4e (patch) | |
tree | 8ef0d57f82167f5cd9571fc4dde594c7cacf1127 /apps | |
parent | 1983606f806d50febbc77141350061e84db18c49 (diff) | |
parent | 07b35b7bae3c3bc684209eb4db20943276afff85 (diff) | |
download | nextcloud-server-6677963902297d95dd7f73854e2a6b1ea3873a4e.tar.gz nextcloud-server-6677963902297d95dd7f73854e2a6b1ea3873a4e.zip |
Merge pull request #3913 from cwickert/master
DummyGetResponsePlugin: ownCloud -> Nexcloud
Diffstat (limited to 'apps')
-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); |