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-08-11 18:29:58 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-08-11 18:29:58 +0400
commit1fa7995ced5189ecd4dc8787419d72bb591c2653 (patch)
treef92de23a844942a577f2bb5044ff775f8a3ee68d /core/Plugin/Dimension
parentc2a4f86902afd2e5bcdc179d86da718a8af7faba (diff)
refs #5820 added some tests for reports and columns refactoring
Diffstat (limited to 'core/Plugin/Dimension')
-rw-r--r--core/Plugin/Dimension/VisitDimension.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Plugin/Dimension/VisitDimension.php b/core/Plugin/Dimension/VisitDimension.php
index d906bd804f..f293271da8 100644
--- a/core/Plugin/Dimension/VisitDimension.php
+++ b/core/Plugin/Dimension/VisitDimension.php
@@ -71,7 +71,7 @@ abstract class VisitDimension extends Dimension
*/
public function install()
{
- if (!$this->columnType) {
+ if (empty($this->columnType) || empty($this->columnName)) {
return array();
}