Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLukas Reschke <lukas@owncloud.com>2016-06-13 19:46:44 +0300
committerLukas Reschke <lukas@owncloud.com>2016-06-13 19:46:44 +0300
commit23017b5738fda54940d9c92967282066efa04092 (patch)
treeb80719a7ffa457304cd6c136aad80f57973a6a4e
parentdffcdca184132ec3e6dc1b978431605dfdd5d890 (diff)
-rw-r--r--src/Controller/IndexController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Controller/IndexController.php b/src/Controller/IndexController.php
index 8f809a1..33cd634 100644
--- a/src/Controller/IndexController.php
+++ b/src/Controller/IndexController.php
@@ -96,7 +96,7 @@ class IndexController {
$configReader->init();
$storedSecret = isset($configReader->get(['system'])['updater.secret']) ? $configReader->get(['system'])['updater.secret'] : null;
if(is_null($storedSecret)) {
- die('updater.secret is undefined in config/config.php. Either browse the admin settings in your ownCloud and click "Open updater" or define a strong secret using <pre>php -r \'echo password_hash("MyStrongSecretDoUseYourOwn!", PASSWORD_DEFAULT)."\n";\'</pre> and set this in the config.php.');
+ die('updater.secret is undefined in config/config.php. Either browse the admin settings in your Nextcloud and click "Open updater" or define a strong secret using <pre>php -r \'echo password_hash("MyStrongSecretDoUseYourOwn!", PASSWORD_DEFAULT)."\n";\'</pre> and set this in the config.php.');
}
$sentAuthHeader = ($this->request->header('X_Updater_Auth') !== null) ? $this->request->header('X_Updater_Auth') : '';