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:
authormattab <matthieu.aubry@gmail.com>2014-04-09 08:24:44 +0400
committermattab <matthieu.aubry@gmail.com>2014-04-09 08:24:44 +0400
commitc3d78269d2492976e94c4990a10a4228c33703e9 (patch)
treea12adf3c84ec2e1eeabb08aced5ca5aa7c14ce1e /core/ArchiveProcessor
parentdf8fc0f43d44325792561872eca9a800a7762dfe (diff)
Refs #472 Custom Events Archiver and API
Diffstat (limited to 'core/ArchiveProcessor')
-rw-r--r--core/ArchiveProcessor/PluginsArchiver.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/core/ArchiveProcessor/PluginsArchiver.php b/core/ArchiveProcessor/PluginsArchiver.php
index cfccad3583..82f361f702 100644
--- a/core/ArchiveProcessor/PluginsArchiver.php
+++ b/core/ArchiveProcessor/PluginsArchiver.php
@@ -93,6 +93,9 @@ class PluginsArchiver
/** @var Archiver $archiver */
$archiver = new $archiverClass($this->archiveProcessor);
+ if(!$archiver->isEnabled()) {
+ continue;
+ }
if($this->shouldProcessReportsForPlugin($pluginName)) {
if($this->isSingleSiteDayArchive) {
$archiver->aggregateDayReport();