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/Twig.php
parent26bd3bc6cc6a7b83357050d6ebddee708e5fe20d (diff)
Refs #4202 removing functions Piwik_PostEvent and moving to Piwik::postEvent
Diffstat (limited to 'core/Twig.php')
-rw-r--r--core/Twig.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Twig.php b/core/Twig.php
index 8ec3fa5bee..d0a3ddea5b 100644
--- a/core/Twig.php
+++ b/core/Twig.php
@@ -115,7 +115,7 @@ class Twig
{
$postEventFunction = new Twig_SimpleFunction('postEvent', function ($eventName) {
$str = '';
- Piwik_PostEvent($eventName, array(&$str));
+ Piwik::postEvent($eventName, array(&$str));
return $str;
}, array('is_safe' => array('html')));
$this->twig->addFunction($postEventFunction);