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:
Diffstat (limited to 'plugins/UserCountry/Columns/Longitude.php')
-rw-r--r--plugins/UserCountry/Columns/Longitude.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/UserCountry/Columns/Longitude.php b/plugins/UserCountry/Columns/Longitude.php
index ec63431f6f..f185506add 100644
--- a/plugins/UserCountry/Columns/Longitude.php
+++ b/plugins/UserCountry/Columns/Longitude.php
@@ -8,6 +8,7 @@
*/
namespace Piwik\Plugins\UserCountry\Columns;
+use Piwik\Common;
use Piwik\Piwik;
use Piwik\Plugins\UserCountry\LocationProvider;
use Piwik\Plugins\UserCountry\Segment;
@@ -50,7 +51,9 @@ class Longitude extends Base
$userInfo = $this->getUserInfo($request, $visitor);
- return $this->getLocationDetail($userInfo, LocationProvider::LONGITUDE_KEY);
+ $longitude = $this->getLocationDetail($userInfo, LocationProvider::LONGITUDE_KEY);
+
+ return $longitude;
}
/**