From bf733d77f7b8273fe0c6bc182e176c7660e83048 Mon Sep 17 00:00:00 2001 From: Thomas Steur <thomas.steur@gmail.com> Date: Wed, 22 Jan 2014 00:45:40 +0000 Subject: [PATCH] refs #4451 when generic filters is disabled, the filter will not be applied. So we enable the filter --- plugins/Live/Controller.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Live/Controller.php b/plugins/Live/Controller.php index bbd14c4239..04ce28d65b 100644 --- a/plugins/Live/Controller.php +++ b/plugins/Live/Controller.php @@ -180,7 +180,7 @@ class Controller extends \Piwik\Plugin\Controller 'segment' => self::getSegmentWithVisitorId(), 'filter_limit' => API::VISITOR_PROFILE_MAX_VISITS_TO_SHOW, 'filter_offset' => $startCounter, - 'disable_generic_filters' => 1, + 'disable_generic_filters' => 0, 'period' => false, 'date' => false )); -- GitLab