Sfoglia il codice sorgente

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

Fix typo in info log for autoconfig
tags/v16.0.0alpha1
Morris Jobke 5 anni fa
parent
commit
58fd78951c
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. 1
    1
      core/Controller/SetupController.php

+ 1
- 1
core/Controller/SetupController.php Vedi 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…
Annulla
Salva