Merge pull request #14377 from nextcloud/fix/noid/typo
Fix typo in info log for autoconfig
This commit is contained in:
commit
58fd78951c
|
@ -106,7 +106,7 @@ class SetupController {
|
||||||
|
|
||||||
public function loadAutoConfig($post) {
|
public function loadAutoConfig($post) {
|
||||||
if( file_exists($this->autoConfigFile)) {
|
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();
|
$AUTOCONFIG = array();
|
||||||
include $this->autoConfigFile;
|
include $this->autoConfigFile;
|
||||||
$post = array_merge ($post, $AUTOCONFIG);
|
$post = array_merge ($post, $AUTOCONFIG);
|
||||||
|
|
Loading…
Reference in New Issue