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:
authormattab <matthieu.aubry@gmail.com>2013-10-09 06:27:46 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-09 06:27:46 +0400
commit4d341983cb34ee64b199295923a4dadfb5b38b6e (patch)
tree2e6c5e1b54fa24f65d5a11d9b82c406dedc6383a /core/Tracker/Action.php
parent26bd3bc6cc6a7b83357050d6ebddee708e5fe20d (diff)
Refs #4202 removing functions Piwik_PostEvent and moving to Piwik::postEvent
Diffstat (limited to 'core/Tracker/Action.php')
-rw-r--r--core/Tracker/Action.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/Tracker/Action.php b/core/Tracker/Action.php
index c869cf8a53..cba622ed99 100644
--- a/core/Tracker/Action.php
+++ b/core/Tracker/Action.php
@@ -14,6 +14,7 @@ namespace Piwik\Tracker;
use Exception;
use Piwik\Common;
use Piwik\Config;
+use Piwik\Piwik;
use Piwik\Tracker;
use Piwik\UrlHelper;
@@ -644,7 +645,7 @@ class Action implements ActionInterface
* This hook is called after saving (and updating) visitor information. You can use it for instance to sync the
* recorded action with third party systems.
*/
- Piwik_PostEvent('Tracker.recordAction', array($trackerAction = $this, $info));
+ Piwik::postEvent('Tracker.recordAction', array($trackerAction = $this, $info));
}
public function getCustomVariables()