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 <thomas.steur@googlemail.com>2014-06-27 10:42:37 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-06-27 10:42:37 +0400
commita32ed81f3b99365243a177caf71aea8b766de667 (patch)
treec06e526ddedcbed001bdd8f565eba5f92cf88ea8 /core/FrontController.php
parent9ea3881b34c0d6e2d021697ebdd78b13a75c5669 (diff)
renderWidget => renderReportWidget since we might want to use renderReport to actually render a widget
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 0523d17616..c01c834e06 100644
--- a/core/FrontController.php
+++ b/core/FrontController.php
@@ -124,7 +124,7 @@ class FrontController extends Singleton
if (!is_callable(array($controller, $action))) {
$report = Report::factory($module, $action);
- $actionToCall = 'renderWidget';
+ $actionToCall = 'renderReportWidget';
$actionToCheck = $action;
if (empty($report) && !empty($action) && 'menu' === substr($action, 0, 4)) {