I searched through the forum but did not find topics describing my problem.
I have 3 languages on my website : English, French, Russian
The default_lang is english
On the front end (English) when I click on the russian or french links, the page loads correctly but the English link becomes a normal span (not a link anymore)! I saw this happen only in Internet Explorer (I have 6.0), Firefox and Safari work just fine.
config_lang.php
I am running MLE 1.4.1 "Spring Garden" by the way, didn't have time to upgrade yet.define('DEFAULT_LANG', 'en');
$hls = array(
'en' => array(
'block'=>'en',
'flag'=>'',
'text'=>'English',
'locale_cms'=>'en_US',
),
'fr' => array(
'block'=>'fr',
'flag'=>'',
'text'=>'Français',
'locale'=>'fr_FR.utf8@euro',
'locale_cms'=>'fr_FR',
),
'ru' => array(
'block'=>'ru',
'flag'=>'',
'text'=>'Русский',
'locale_cms'=>'ru_RU',
),
);
?>
Thanks!