]> git.mxchange.org Git - friendica.git/commitdiff
bugfixing ini-loading
authorPhilipp Holzer <admin@philipp.info>
Tue, 5 Feb 2019 22:47:40 +0000 (23:47 +0100)
committerPhilipp Holzer <admin@philipp.info>
Tue, 5 Feb 2019 22:47:40 +0000 (23:47 +0100)
src/Core/Config/ConfigCacheLoader.php

index b95f7aa5a4ba3593f24db2ca52b8b77dae77354b..768e30e2428eb1b6aa781513f1ae25d6c3c67b1d 100644 (file)
@@ -108,15 +108,13 @@ class ConfigCacheLoader
         * Tries to load the specified legacy configuration file and returns the config array.
         *
         * @deprecated since version 2018.12
-        * @param string $filename
+        * @param string $filepath
         *
         * @return array The configuration array
         * @throws \Exception
         */
-       public function loadINIConfigFile($filename)
+       public function loadINIConfigFile($filepath)
        {
-               $filepath = $this->configDir . DIRECTORY_SEPARATOR . $filename . ".ini.php";
-
                if (!file_exists($filepath)) {
                        throw new \Exception('Error parsing non-existent INI config file ' . $filepath);
                }