Skip to content
Extraits de code Groupes Projets
Valider 9aaa840c rédigé par Thomas Steur's avatar Thomas Steur
Parcourir les fichiers

the events documentation generator failed because of "Call to undefined...

the events documentation generator failed because of "Call to undefined function Piwik\_parse_ini_file()" which should be fixed now
parent 4c590805
Branches
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
......@@ -318,18 +318,18 @@ class Config extends Singleton
Piwik_ExitWithMessage(Piwik::translate('General_ExceptionConfigurationFileNotFound', array($this->pathGlobal)));
}
$this->configGlobal = _parse_ini_file($this->pathGlobal, true);
$this->configGlobal = \_parse_ini_file($this->pathGlobal, true);
if (empty($this->configGlobal) && $reportError) {
Piwik_ExitWithMessage(Piwik::translate('General_ExceptionUnreadableFileDisabledMethod', array($this->pathGlobal, "parse_ini_file()")));
}
$this->configCommon = _parse_ini_file($this->pathCommon, true);
$this->configCommon = \_parse_ini_file($this->pathCommon, true);
// Check config.ini.php last
$this->checkLocalConfigFound();
$this->configLocal = _parse_ini_file($this->pathLocal, true);
$this->configLocal = \_parse_ini_file($this->pathLocal, true);
if (empty($this->configLocal) && $reportError) {
Piwik_ExitWithMessage(Piwik::translate('General_ExceptionUnreadableFileDisabledMethod', array($this->pathLocal, "parse_ini_file()")));
}
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Veuillez vous inscrire ou vous pour commenter