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:
authordiosmosis <diosmosis@users.noreply.github.com>2019-07-12 05:31:29 +0300
committerGitHub <noreply@github.com>2019-07-12 05:31:29 +0300
commit12b4e850e15aaeb8e30cb0853775e2c9273b0cfd (patch)
tree8ebc0d2989bb58d42f8e81216601467de4d32297 /plugins/UserLanguage
parent2eaa4034a79ae0b08f8444c0d867e9ba17b93517 (diff)
Small archiving refactors for GA import (#14606)
* start adding new goal type * Add new goal type to UI + tracker + add tests. * Cache pageview count query result. * Apply pr feedback * remove debugging code * remove unused code * Move method to ArchivingHelper so it can be used elsewhere. * unneeded return * Couple more changes * Update customdimensions submodule. * update submodule * fix failing test
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);
}
}