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:
-rw-r--r--core/CronArchive.php7
1 files changed, 0 insertions, 7 deletions
diff --git a/core/CronArchive.php b/core/CronArchive.php
index 1a8a53c918..548435d438 100644
--- a/core/CronArchive.php
+++ b/core/CronArchive.php
@@ -79,7 +79,6 @@ class CronArchive
private $lastSuccessRunTimestamp = false;
private $errors = array();
- private $isCoreInited = false;
const NO_ERROR = "no error";
@@ -859,17 +858,11 @@ class CronArchive
{
try {
FrontController::getInstance()->init();
- $this->isCoreInited = true;
} catch (Exception $e) {
throw new Exception("ERROR: During Piwik init, Message: " . $e->getMessage());
}
}
- public function isCoreInited()
- {
- return $this->isCoreInited;
- }
-
/**
* Initializes the various parameters to the script, based on input parameters.
*