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:
authormattab <matthieu.aubry@gmail.com>2014-02-23 23:27:30 +0400
committermattab <matthieu.aubry@gmail.com>2014-02-23 23:27:30 +0400
commit5f95b9e1192bdaecdf585070ede59131ef915b07 (patch)
treecbd70057274b0406eb6ffa3d23f31867da95e889
parent080b7ef1fcc47c4d0ee77615ac584157157eb97d (diff)
Rename hook for consistency
-rw-r--r--plugins/Live/API.php2
-rw-r--r--plugins/Live/Controller.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Live/API.php b/plugins/Live/API.php
index 53a9f57334..4469eb6cec 100644
--- a/plugins/Live/API.php
+++ b/plugins/Live/API.php
@@ -328,8 +328,8 @@ class API extends \Piwik\Plugin\API
$result['lastVisit'] = $this->getVisitorProfileVisitSummary(reset($rows));
// check if requested visits have lat/long
- $result['hasLatLong'] = false;
if ($checkForLatLong) {
+ $result['hasLatLong'] = false;
foreach ($rows as $visit) {
if ($visit->getColumn('latitude') !== false) { // realtime map only checks for latitude
$result['hasLatLong'] = true;
diff --git a/plugins/Live/Controller.php b/plugins/Live/Controller.php
index 31f23678ce..900010f157 100644
--- a/plugins/Live/Controller.php
+++ b/plugins/Live/Controller.php
@@ -143,7 +143,7 @@ class Controller extends \Piwik\Plugin\Controller
$view->exportLink = $this->getVisitorProfileExportLink();
if (Common::getRequestVar('showMap', 1) == 1
- && $view->visitorData['hasLatLong']
+ && !empty($view->visitorData['hasLatLong'])
&& \Piwik\Plugin\Manager::getInstance()->isPluginLoaded('UserCountryMap')
) {
$view->userCountryMapUrl = $this->getUserCountryMapUrlForVisitorProfile();