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@gmail.com>2015-10-15 18:05:27 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-10-15 18:05:27 +0300
commit22526a9f45d8950d668f7730f55782fa154e4c9b (patch)
tree147e04d3b1df7db8b06dd159b46aeacfaa482937 /plugins/Goals
parent9a7c13bb1a1019c004ef70a89fe5feeeda716d58 (diff)
fixes #9007 Click on menu expands the sub-menu, but do not load first sub-menu page
Diffstat (limited to 'plugins/Goals')
-rw-r--r--plugins/Goals/Menu.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Goals/Menu.php b/plugins/Goals/Menu.php
index 85db036797..d032aea4a2 100644
--- a/plugins/Goals/Menu.php
+++ b/plugins/Goals/Menu.php
@@ -28,7 +28,7 @@ class Menu extends \Piwik\Plugin\Menu
$linkToAddNewGoal = $this->urlForAction('addNewGoal', array(
'idGoal' => null,
));
- $menu->addItem($mainGoalMenu, '', $linkToAddNewGoal, 25);
+ $menu->addItem($mainGoalMenu, '', array(), 25);
$menu->addItem($mainGoalMenu, 'Goals_AddNewGoal', $linkToAddNewGoal, 1);
return;
}