From 305f16508662713f2e1247d5a1ee7708fa656d97 Mon Sep 17 00:00:00 2001 From: mattab Date: Fri, 11 Jul 2014 11:04:49 +0200 Subject: [PATCH] change parameter to public as suggested in Platform & Plugins forum: http://forum.piwik.org/read.php?9,117763 --- core/Tracker/Action.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/core/Tracker/Action.php b/core/Tracker/Action.php index 625bd9e4edb..b8949c0955c 100644 --- a/core/Tracker/Action.php +++ b/core/Tracker/Action.php @@ -70,9 +70,11 @@ static public function factory(Request $request) } /** + * Public so that events listener can access it + * * @var Request */ - protected $request; + public $request; private $idLinkVisitAction; private $actionIdsCached = array();