I am done with 2 languages store, when I set one of two langs to be default, then log off with (default lang), it takes me to the log off page but It shows.

The page cannot be displayed!!!!!!

not go to normal lofoff page but if I logoff with not default lang. It's takes me
to the logoff success page.

1.Logoff with default lang
http://localhost/catalog/index.php?m...ogoff&language= <--- missing
2.Logoff with not default lang
http://localhost/catalog/index.php?m...ff&language=en

Then I edited code in :\includes\modules\pages\logoff\header_php.php
From:
PHP Code:
/**
 * Check what language should be used on the logoff screen
 */
  
$logoff_lang = ($_SESSION['languages_code'] != DEFAULT_LANGUAGE) ? 'language=' $_SESSION['languages_code'] : ''
To:
PHP Code:
/**
 * Check what language should be used on the logoff screen
 */
  
$logoff_lang = ($_SESSION['languages_code']) ? 'language=' $_SESSION['languages_code'] : ''
It getting work with all langs. But I want to know what happen? Is it right to do like this? Because, I'm not the expert in PHP.
refer link:http://www.zen-cart.com/forum/showth...ghlight=logoff