From 23017b5738fda54940d9c92967282066efa04092 Mon Sep 17 00:00:00 2001 From: Lukas Reschke Date: Mon, 13 Jun 2016 18:46:44 +0200 Subject: [PATCH] ownCloud -> Nextcloud --- src/Controller/IndexController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Controller/IndexController.php b/src/Controller/IndexController.php index 8f809a14..33cd6345 100644 --- a/src/Controller/IndexController.php +++ b/src/Controller/IndexController.php @@ -96,7 +96,7 @@ protected function isLoggedIn() { $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
php -r \'echo password_hash("MyStrongSecretDoUseYourOwn!", PASSWORD_DEFAULT)."\n";\'
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
php -r \'echo password_hash("MyStrongSecretDoUseYourOwn!", PASSWORD_DEFAULT)."\n";\'
and set this in the config.php.'); } $sentAuthHeader = ($this->request->header('X_Updater_Auth') !== null) ? $this->request->header('X_Updater_Auth') : '';