From 0e75dbdbf8a225b9b541104ebaf73d3a52455fbe Mon Sep 17 00:00:00 2001 From: Damien Metzger Date: Thu, 6 Jun 2013 18:53:35 +0200 Subject: [PATCH] [*] BO : attributes taken into account for the language entity in the localization packs --- classes/LocalizationPack.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/LocalizationPack.php b/classes/LocalizationPack.php index 133ad8534..bfa03e301 100644 --- a/classes/LocalizationPack.php +++ b/classes/LocalizationPack.php @@ -294,7 +294,7 @@ class LocalizationPackCore // if we are not in an installation context or if the pack is not available in the local directory if (Language::getIdByIso($attributes['iso_code']) && !$install_mode) continue; - $errors = Language::downloadAndInstallLanguagePack($attributes['iso_code'], $attributes['version']); + $errors = Language::downloadAndInstallLanguagePack($attributes['iso_code'], $attributes['version'], $attributes); if ($errors !== true && is_array($errors)) $this->_errors = array_merge($this->_errors, $errors); }