summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMorris Jobke <hey@morrisjobke.de>2019-02-25 22:55:15 +0100
committerGitHub <noreply@github.com>2019-02-25 22:55:15 +0100
commit58fd78951c944d69770f2979387d865f1e7f91a5 (patch)
treefe8d4b19343009542ca803acb1355c14e1d6d958
parentea6ba53cc052a5007178d32ad2039ef7e4c9a9d4 (diff)
parent5cbe6532a04d2aa1522dfd5ec115e11ee82c8537 (diff)
downloadnextcloud-server-58fd78951c944d69770f2979387d865f1e7f91a5.tar.gz
nextcloud-server-58fd78951c944d69770f2979387d865f1e7f91a5.zip
Merge pull request #14377 from nextcloud/fix/noid/typo
Fix typo in info log for autoconfig
-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);