Page 1 of 1

[SOLVED] no language link in IE!

Posted: Wed Jan 28, 2009 4:30 am
by antosha
Hello,
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
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',
),

);
?>
I am running MLE 1.4.1 "Spring Garden" by the way, didn't have time to upgrade yet.

Thanks!

Re: no language link in IE!

Posted: Wed Jan 28, 2009 8:45 am
by Dr.CSS
First thing I would do is move the russian array down one line...

And post a link to the site so others can see what is happening on the site...

Re: no language link in IE! [SOLVED]

Posted: Thu Jan 29, 2009 1:15 am
by antosha
nevermind,
I just found I didn't close a   !

Thanks  : )