Skip to content

Commit

Permalink
Update AbstractBase.php
Browse files Browse the repository at this point in the history
It seems this solved issue #31

According to the docs, "onNewVisit" should return false if it is not supposed to update any information: https://developer.piwik.org/api-reference/Piwik/Plugin/Dimension/VisitDimension#onnewvisit
  • Loading branch information
phoob authored Mar 18, 2017
1 parent ccf8414 commit eaa1da3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Columns/AbstractBase.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,6 @@ protected function getLocationIntranetColumn(array $userInfo, $locationKey)
return $result[$locationKey];
}

return;
return false;
}
}

0 comments on commit eaa1da3

Please sign in to comment.