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:
authorThomas Steur <thomas.steur@googlemail.com>2014-09-26 11:37:17 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-09-26 11:37:17 +0400
commit76e8e44a3a6b68f2bc37d1bd617a40e68fbff012 (patch)
treede247cb7e4b48f0758ff7b82e9c5a0d8dea3a4b1 /plugins/Actions/Archiver.php
parent3492bc2102c8f9f084a35861e3b4ceb28cbf4c26 (diff)
refs #6204 wondering if archiving still works when removing this dependency from Actions to Contents plugin. The dependency to the event plugin would be still there. It might work now as I changed Contents plugin to use its own action type recently
Diffstat (limited to 'plugins/Actions/Archiver.php')
-rw-r--r--plugins/Actions/Archiver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Actions/Archiver.php b/plugins/Actions/Archiver.php
index 407019061c..14d4214744 100644
--- a/plugins/Actions/Archiver.php
+++ b/plugins/Actions/Archiver.php
@@ -123,7 +123,7 @@ class Archiver extends \Piwik\Plugin\Archiver
*/
public static function getWhereClauseActionIsNotEvent()
{
- return " AND log_link_visit_action.idaction_event_category IS NULL AND log_link_visit_action.idaction_content_name IS NULL";
+ return " AND log_link_visit_action.idaction_event_category IS NULL";
}
/**