Browse Source

Merge pull request #14377 from nextcloud/fix/noid/typo

Fix typo in info log for autoconfig
tags/v16.0.0alpha1
Morris Jobke 5 years ago
parent
commit
58fd78951c
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      core/Controller/SetupController.php

+ 1
- 1
core/Controller/SetupController.php View File

@@ -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);

Loading…
Cancel
Save