fix a small php notice.

This commit is contained in:
Fabio Comuni 2011-06-16 12:14:04 +02:00
förälder 5f583fb8d6
incheckning c94b809634
1 ändrade filer med 1 tillägg och 1 borttagningar

Visa fil

@ -2779,7 +2779,7 @@ function unamp($s) {
if(! function_exists('lang_selector')) {
function lang_selector() {
global $lang;
$o .= '<div id="lang-select-icon" class="icon language" title="' . t('Select an alternate language') . '" onclick="openClose(\'language-selector\');" ></div>';
$o = '<div id="lang-select-icon" class="icon language" title="' . t('Select an alternate language') . '" onclick="openClose(\'language-selector\');" ></div>';
$o .= '<div id="language-selector" style="display: none;" >';
$o .= '<form action="" method="post" ><select name="system_language" onchange="this.form.submit();" >';
$langs = glob('view/*/strings.php');