diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-06-16 12:14:04 +0200 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-06-16 12:14:04 +0200 |
commit | c94b809634cd92c69be3483c935e6741b7d0c090 (patch) | |
tree | 50bf1905e8fe822c4dec778b8d1886d21dfa2503 /boot.php | |
parent | 5f583fb8d6b71f63bf240729c00f9fd2009afd93 (diff) | |
download | volse-hubzilla-c94b809634cd92c69be3483c935e6741b7d0c090.tar.gz volse-hubzilla-c94b809634cd92c69be3483c935e6741b7d0c090.tar.bz2 volse-hubzilla-c94b809634cd92c69be3483c935e6741b7d0c090.zip |
fix a small php notice.
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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'); |