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

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-02-25 23:28:22 +0300
committerMorris Jobke <hey@morrisjobke.de>2019-02-25 23:28:22 +0300
commit5cbe6532a04d2aa1522dfd5ec115e11ee82c8537 (patch)
tree596ac3bfc3bb8ca80bc6319b007ccec1be49d0c2 /core/Controller
parent25bb0918fd8ac3f5c69c8d53494d6167d9531866 (diff)
Fix typo in info log for autoconfig
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
Diffstat (limited to 'core/Controller')
-rw-r--r--core/Controller/SetupController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Controller/SetupController.php b/core/Controller/SetupController.php
index 38b92192d01..b9d561cb4c9 100644
--- a/core/Controller/SetupController.php
+++ b/core/Controller/SetupController.php
@@ -106,7 +106,7 @@ class SetupController {
public function loadAutoConfig($post) {
if( file_exists($this->autoConfigFile)) {
- \OCP\Util::writeLog('core', 'Autoconfig file found, setting up ownCloud…', ILogger::INFO);
+ \OCP\Util::writeLog('core', 'Autoconfig file found, setting up Nextcloud…', ILogger::INFO);
$AUTOCONFIG = array();
include $this->autoConfigFile;
$post = array_merge ($post, $AUTOCONFIG);