Index: branches/5.2.x/core/units/languages/languages_item.php =================================================================== diff -u -N -r13840 -r14095 --- branches/5.2.x/core/units/languages/languages_item.php (.../languages_item.php) (revision 13840) +++ branches/5.2.x/core/units/languages/languages_item.php (.../languages_item.php) (revision 14095) @@ -1,6 +1,6 @@ Application->HttpQuery->Get); } - function Load($id, $id_field_name=null) + public function Load($id, $id_field_name = null, $cachable = true) { $default = false; if ($id == 'default') { @@ -162,10 +162,10 @@ $id = $this->Application->siteDomainField('PrimaryLanguageId'); if ($id) { - $res = parent::Load($id, $id_field_name, true); + $res = parent::Load($id, $id_field_name, $cachable); } else { - $res = parent::Load(1, 'PrimaryLang', true); + $res = parent::Load(1, 'PrimaryLang', $cachable); } if ( @@ -187,7 +187,7 @@ } } else { - $res = parent::Load($id, $id_field_name, true); + $res = parent::Load($id, $id_field_name, $cachable); } if ($res) { @@ -200,7 +200,7 @@ if ($default) { if (!$res) { if ($this->Application->isAdmin) { - $res = parent::Load(1); + $res = parent::Load(1, $id_field_name, false); } else { if (defined('IS_INSTALL')) {