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:
authordiosmosis <benaka@piwik.pro>2015-03-11 16:02:25 +0300
committerdiosmosis <benaka@piwik.pro>2015-03-11 16:02:25 +0300
commitd2a2d2b58bfc2ffc6d17cd5b5ea982b07a5c263a (patch)
tree8eb143649d9875358021b3f3f4b362dcffaf17aa /plugins
parent446554ef52e0e6c9a90c0610d7e72429eb2c7cca (diff)
Fix build failure (due to dimension cache causing VisitorGeolocator to not use correct location provider).
Diffstat (limited to 'plugins')
-rw-r--r--plugins/UserCountry/Columns/Country.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/plugins/UserCountry/Columns/Country.php b/plugins/UserCountry/Columns/Country.php
index 458e92b068..841c88f16b 100644
--- a/plugins/UserCountry/Columns/Country.php
+++ b/plugins/UserCountry/Columns/Country.php
@@ -67,7 +67,6 @@ class Country extends Base
$country = $this->getLocationDetail($userInfo, LocationProvider::COUNTRY_CODE_KEY);
if (!empty($country) && $country != Visit::UNKNOWN_CODE) {
-
return strtolower($country);
}