// Fix ISO detection on installer

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@15920 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
rMalie
2012-06-07 12:34:25 +00:00
parent 133a92fd40
commit a123107d14
+2 -2
View File
@@ -282,12 +282,12 @@ class InstallControllerHttpConfigure extends InstallControllerHttp
$this->list_countries[] = array('iso' => $iso, 'name' => $lang);
// Try to detect default country
if (!$this->session->shop_country)
if (1||!$this->session->shop_country)
{
$detect_language = $this->language->detectLanguage();
if (isset($detect_language['primarytag']))
{
$this->session->shop_country = (isset($detect_language['subtag'])) ? $detect_language['subtag'] : $detect_language['primarytag'];
$this->session->shop_country = strtolower(isset($detect_language['subtag']) ? $detect_language['subtag'] : $detect_language['primarytag']);
$this->session->shop_timezone = $this->getTimezoneByIso($this->session->shop_country);
}
}