Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/FrontController.php')
-rw-r--r--core/FrontController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/FrontController.php b/core/FrontController.php
index fec59e2715..1e9e1ff681 100644
--- a/core/FrontController.php
+++ b/core/FrontController.php
@@ -186,7 +186,7 @@ class FrontController
*
* @return Exception
*/
- public function createConfigObject()
+ static public function createConfigObject()
{
$exceptionToThrow = false;
try {
@@ -233,7 +233,7 @@ class FrontController
Translate::getInstance()->loadEnglishTranslation();
- $exceptionToThrow = $this->createConfigObject();
+ $exceptionToThrow = self::createConfigObject();
if (Session::isFileBasedSessions()) {
Session::start();