diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-28 21:42:48 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2013-10-28 21:42:48 +0100 |
commit | a90cefcea2d9240477fdd597d6dc247f101f555a (patch) | |
tree | 31a9155faf03398843f7ce0d48aa2d995530bdc7 /apps/files/lib | |
parent | 4750fbc22655b27120136a0dfdc601fb37307bf5 (diff) | |
download | nextcloud-server-a90cefcea2d9240477fdd597d6dc247f101f555a.tar.gz nextcloud-server-a90cefcea2d9240477fdd597d6dc247f101f555a.zip |
avoid usage of brand name 'ownCloud'
Diffstat (limited to 'apps/files/lib')
-rw-r--r-- | apps/files/lib/app.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/lib/app.php b/apps/files/lib/app.php index 810a9fdd8d1..f5ac11b2168 100644 --- a/apps/files/lib/app.php +++ b/apps/files/lib/app.php @@ -57,7 +57,7 @@ class App { // rename to "/Shared" is denied if( $dir === '/' and $newname === 'Shared' ) { $result['data'] = array( - 'message' => $this->l10n->t("Invalid folder name. Usage of 'Shared' is reserved by ownCloud") + 'message' => $this->l10n->t("Invalid folder name. Usage of 'Shared' is reserved.") ); // rename to existing file is denied } else if ($this->view->file_exists($dir . '/' . $newname)) { |