diff options
author | Lukas Reschke <lukas@statuscode.ch> | 2016-06-20 22:43:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-20 22:43:28 +0200 |
commit | 0236535fd3e98a23a1fd3d4adfa472050a6c146e (patch) | |
tree | 4ecf67ec75117a43a009d426f95444292dcd2b36 /lib/base.php | |
parent | 9a0b78e757471953301a0092d113802bce2097d8 (diff) | |
parent | 851b277a8e5aa7a2c776f96c4ee0c727713309ff (diff) | |
download | nextcloud-server-9.0.51.tar.gz nextcloud-server-9.0.51.zip |
Merge pull request #178 from nextcloud/fix-itv9.0.51
[stable9] Branding
Diffstat (limited to 'lib/base.php')
-rw-r--r-- | lib/base.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/base.php b/lib/base.php index fd3b005b484..472bf1b9601 100644 --- a/lib/base.php +++ b/lib/base.php @@ -197,8 +197,8 @@ class OC { } } if (empty(OC::$THIRDPARTYROOT) || !file_exists(OC::$THIRDPARTYROOT)) { - throw new \RuntimeException('3rdparty directory not found! Please put the ownCloud 3rdparty' - . ' folder in the ownCloud folder or the folder above.' + throw new \RuntimeException('3rdparty directory not found! Please put the Nextcloud 3rdparty' + . ' folder in the Nextcloud folder or the folder above.' . ' You can also configure the location in the config.php file.'); } @@ -223,15 +223,15 @@ class OC { } if (empty(OC::$APPSROOTS)) { - throw new \RuntimeException('apps directory not found! Please put the ownCloud apps folder in the ownCloud folder' + throw new \RuntimeException('apps directory not found! Please put the Nextcloud apps folder in the Nextcloud folder' . ' or the folder above. You can also configure the location in the config.php file.'); } $paths = array(); foreach (OC::$APPSROOTS as $path) { $paths[] = $path['path']; if (!is_dir($path['path'])) { - throw new \RuntimeException(sprintf('App directory "%s" not found! Please put the ownCloud apps folder in the' - . ' ownCloud folder or the folder above. You can also configure the location in the' + throw new \RuntimeException(sprintf('App directory "%s" not found! Please put the Nextcloud apps folder in the' + . ' Nextcloud folder or the folder above. You can also configure the location in the' . ' config.php file.', $path['path'])); } } |