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
path: root/core
diff options
context:
space:
mode:
authormatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-04-07 12:06:56 +0400
committermatt <matt@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2009-04-07 12:06:56 +0400
commit59a0781e21514555bfe17334e0c0472e29efa7d9 (patch)
treee47daca6efcda5b7ce30d5b001894004678e69f1 /core
parent5a61b80a9a4245910bca25be7942aa45d204483c (diff)
0.2.33
Diffstat (limited to 'core')
-rw-r--r--core/Common.php7
-rw-r--r--core/Version.php2
2 files changed, 2 insertions, 7 deletions
diff --git a/core/Common.php b/core/Common.php
index 491e562948..c9f8df9290 100644
--- a/core/Common.php
+++ b/core/Common.php
@@ -566,17 +566,12 @@ class Piwik_Common
static public function getContinent($country)
{
require_once "DataFiles/Countries.php";
-
$countryList = $GLOBALS['Piwik_CountryList'];
-
if(isset($countryList[$country][0]))
{
return $countryList[$country][0];
}
- else
- {
- return 'unk';
- }
+ return 'unk';
}
/**
diff --git a/core/Version.php b/core/Version.php
index 7e2efff623..2853ab3f7d 100644
--- a/core/Version.php
+++ b/core/Version.php
@@ -1,5 +1,5 @@
<?php
final class Piwik_Version {
- const VERSION = '0.2.32';
+ const VERSION = '0.2.33';
}