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 <tsteur@users.noreply.github.com>2014-05-16 08:23:48 +0400
committerThomas Steur <tsteur@users.noreply.github.com>2014-05-16 08:23:48 +0400
commitc23475a74ba2025a0474882465a6fae051e4d1e2 (patch)
tree2c4b675337a0db202c4c7e0ca010e635e1c6fde6 /core/FrontController.php
parent8fb4056ad399b0e14eebb5942db49c382f9522e7 (diff)
The module and action was not included in this event
Diffstat (limited to 'core/FrontController.php')
-rw-r--r--core/FrontController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/FrontController.php b/core/FrontController.php
index 9a9927eb03..4052bd8d0b 100644
--- a/core/FrontController.php
+++ b/core/FrontController.php
@@ -522,7 +522,7 @@ class FrontController extends Singleton
* @param mixed &$result The controller action result.
* @param array $parameters The arguments passed to the controller action.
*/
- Piwik::postEvent('Request.dispatch.end', array(&$result, $parameters));
+ Piwik::postEvent('Request.dispatch.end', array(&$result, $module, $action, $parameters));
return $result;
}