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 <benaka@piwik.pro>2015-05-12 07:54:00 +0300
committerdiosmosis <benaka@piwik.pro>2015-06-11 09:42:04 +0300
commit1223d1c892cccab917ca304614068e0140ea2e45 (patch)
tree4bbe7c03d1390c0be72ee6778a5050beb5d432f3 /plugins/PrivacyManager/PrivacyManager.php
parent97abd79c07c8fcf86b27f244dbb042f64c01afe6 (diff)
Use LogPurger::deleteVisitsFor in LogDataPurger class in PrivacyManager plugin, Rename LogPurger to LogDeleter, add test for VisitorGeolocator::reattributeVisits and add empty tests for LogDeleter service.
Diffstat (limited to 'plugins/PrivacyManager/PrivacyManager.php')
-rw-r--r--plugins/PrivacyManager/PrivacyManager.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PrivacyManager/PrivacyManager.php b/plugins/PrivacyManager/PrivacyManager.php
index 775ba48af7..b8ff45e480 100644
--- a/plugins/PrivacyManager/PrivacyManager.php
+++ b/plugins/PrivacyManager/PrivacyManager.php
@@ -326,7 +326,7 @@ class PrivacyManager extends Plugin
// execute the purge
/** @var LogDataPurger $logDataPurger */
$logDataPurger = StaticContainer::get('Piwik\Plugins\PrivacyManager\LogDataPurger');
- $logDataPurger->purgeData($settings['delete_logs_older_than'], $settings['delete_logs_max_rows_per_query']);
+ $logDataPurger->purgeData($settings['delete_logs_older_than']);
return true;
}