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>2019-07-23 02:22:39 +0300
committerGitHub <noreply@github.com>2019-07-23 02:22:39 +0300
commit016f83f8e3e7b675bbab5401b5196bbea2fedac3 (patch)
tree4f3429c2631499824c86e0a4ca90d5086a2de763 /plugins/Events
parentab9c43306c466ab1ecbb092967f2c5e1fa65806b (diff)
fix 'secondaryDimension' isn't set in the Request when viewing row evolution in events (#14666)
fix #14621
Diffstat (limited to 'plugins/Events')
-rw-r--r--plugins/Events/Reports/Base.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Events/Reports/Base.php b/plugins/Events/Reports/Base.php
index a4723984fc..6f36dc1b67 100644
--- a/plugins/Events/Reports/Base.php
+++ b/plugins/Events/Reports/Base.php
@@ -41,7 +41,7 @@ abstract class Base extends \Piwik\Plugin\Report
public function configureView(ViewDataTable $view)
{
- if (Common::getRequestVar('secondaryDimension')) {
+ if (Common::getRequestVar('secondaryDimension', '', 'string')) {
foreach (['pivotBy', 'pivotByColumn'] as $property) {
$index = array_search($property, $view->requestConfig->overridableProperties);
if ($index) {