浏览代码

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

Fix typo in info log for autoconfig
tags/v16.0.0alpha1
Morris Jobke 5 年前
父节点
当前提交
58fd78951c
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      core/Controller/SetupController.php

+ 1
- 1
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);

正在加载...
取消
保存