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 'plugins/UserLanguage')
-rw-r--r--plugins/UserLanguage/Archiver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/UserLanguage/Archiver.php b/plugins/UserLanguage/Archiver.php
index 93a7f3da0b..b9f0ac8506 100644
--- a/plugins/UserLanguage/Archiver.php
+++ b/plugins/UserLanguage/Archiver.php
@@ -85,7 +85,7 @@ class Archiver extends \Piwik\Plugin\Archiver
protected function insertTable($recordName, DataTable $table)
{
$report = $table->getSerialized($this->maximumRows, null, Metrics::INDEX_NB_VISITS);
- return $this->getProcessor()->insertBlobRecord($recordName, $report);
+ $this->getProcessor()->insertBlobRecord($recordName, $report);
}
}