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
path: root/core
diff options
context:
space:
mode:
authorBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-09 23:35:18 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-09 23:35:18 +0400
commita0466aef295c4b820f239b3ad32baecc56f9c583 (patch)
tree2e3420adf5defd173bf229d78cafea04353633fa /core
parent0af8867c1622296c18396dc98ab65dc2ed7e637f (diff)
Attempt to fix visitor log row picker regression.
Diffstat (limited to 'core')
-rw-r--r--core/ViewDataTable.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/ViewDataTable.php b/core/ViewDataTable.php
index a867788fc7..76c2063b20 100644
--- a/core/ViewDataTable.php
+++ b/core/ViewDataTable.php
@@ -1255,6 +1255,10 @@ class ViewDataTable
// TODO: should mark properties that are overridable so not all properties can be overidden this way
$queryParams = $_GET + $_POST;
foreach ($queryParams as $name => $value) {
+ if (empty($queryParams[$name])) {
+ continue;
+ }
+
$value = Common::getRequestVar($name, $default = null, $type = null, $queryParams);
if (Properties::isCoreViewProperty($name)) {