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:
authorStefan Giehl <stefan@piwik.org>2018-05-22 02:12:59 +0300
committerdiosmosis <diosmosis@users.noreply.github.com>2018-05-22 02:12:59 +0300
commit05d5b3010b889ac7cbea12bc9c4e70c98a33ecb0 (patch)
treed8152e314c391c0ccad4fa73cdf48c33783c368b /plugins/PrivacyManager/API.php
parent634a7fe19efa7bc8a80ebad55f41025fe639ecfc (diff)
Adds message about data retention on gdpr overview (#12878)
* Adds message about data retention on gdpr overview * Adds additional information about gdpr relevant data retention * replace log data with raw data * review adjustments * adds ui test * review adjustments * update UI files
Diffstat (limited to 'plugins/PrivacyManager/API.php')
-rw-r--r--plugins/PrivacyManager/API.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/PrivacyManager/API.php b/plugins/PrivacyManager/API.php
index 93f96101be..01664ce496 100644
--- a/plugins/PrivacyManager/API.php
+++ b/plugins/PrivacyManager/API.php
@@ -244,7 +244,7 @@ class API extends \Piwik\Plugin\API
private function checkDataPurgeAdminSettingsIsEnabled()
{
if (!Controller::isDataPurgeSettingsEnabled()) {
- throw new \Exception("Configuring deleting log data and report data has been disabled by Matomo admins.");
+ throw new \Exception("Configuring deleting raw data and report data has been disabled by Matomo admins.");
}
}
}