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:
authorStefan Giehl <stefan@piwik.org>2017-09-13 00:20:38 +0300
committerGitHub <noreply@github.com>2017-09-13 00:20:38 +0300
commit3cb7169cef259efe922912364c3c8479a986619c (patch)
treed8d7c6c566a2f0c0288036ed61e0fd4272b615f6 /core/Common.php
parent571d96e9005518e408e2ad92ef5f2b6123b5632e (diff)
Show Tibet as part of China on map (#11930)
* Revert "free tibet!" This reverts commit 4e47c8aba3bf146292f6e9d38aa0151c383e6c33. * Remove unneeded translations * adjust API * fix tests * update screenshots * update tests files * update screenshot * Do not change detected location * update tests * Fix continent detection for old records * submodule update * update screenshots * Cleanup * use group by filters only if needed * make filter work for datatable maps
Diffstat (limited to 'core/Common.php')
-rw-r--r--core/Common.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/Common.php b/core/Common.php
index 1616e56505..f884d9fe2f 100644
--- a/core/Common.php
+++ b/core/Common.php
@@ -1026,6 +1026,10 @@ class Common
$countryList = $dataProvider->getCountryList();
+ if ($country == 'ti') {
+ $country = 'cn';
+ }
+
return isset($countryList[$country]) ? $countryList[$country] : 'unk';
}