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-10 20:59:51 +0400
committerBenaka Moorthi <benaka.moorthi@gmail.com>2013-09-10 20:59:51 +0400
commitd57f4a83aa7295c1e23277b2c22e9be4cafb1112 (patch)
tree3df687b740db56289f01d9db0c0509c36622168a /core
parentd1c056d97ef67df503fdf779d400e7748bf4dda6 (diff)
Refs #4087, add UI screenshot tests to new repository, enable tests on travis and make sure new repo is built every time integration tests pass on piwik build.
Diffstat (limited to 'core')
-rw-r--r--core/ViewDataTable.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/ViewDataTable.php b/core/ViewDataTable.php
index 76c2063b20..fd4d171615 100644
--- a/core/ViewDataTable.php
+++ b/core/ViewDataTable.php
@@ -1255,10 +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])) {
+ if (empty($value)) {
continue;
}
-
+
$value = Common::getRequestVar($name, $default = null, $type = null, $queryParams);
if (Properties::isCoreViewProperty($name)) {