summaryrefslogtreecommitdiff
path: root/includes/helper
diff options
context:
space:
mode:
authorPhilip Häusler <msquare@notrademark.de>2014-09-24 15:03:41 +0200
committerPhilip Häusler <msquare@notrademark.de>2014-09-24 15:03:41 +0200
commit094715e6eea83c56891716c24b652b35f18337bd (patch)
tree9036b4088383e9ec612b1a79855f47070de4481d /includes/helper
parent086ddc2248f74b94e8f6fb94e87fded4eca56dc1 (diff)
optimize navbar for 1024 px width
Diffstat (limited to 'includes/helper')
-rw-r--r--includes/helper/internationalization_helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/helper/internationalization_helper.php b/includes/helper/internationalization_helper.php
index 7598dc2f..6a1f172d 100644
--- a/includes/helper/internationalization_helper.php
+++ b/includes/helper/internationalization_helper.php
@@ -48,7 +48,7 @@ function make_langselect() {
$items = array();
foreach ($locales as $locale => $name)
$items[] = toolbar_item_link(htmlspecialchars($URL) . $locale, '', '<img src="pic/flag/' . $locale . '.png" alt="' . $name . '" title="' . $name . '"> ' . $name);
- return toolbar_dropdown('', '<img src="pic/flag/' . $_SESSION['locale'] . '.png" alt="' . $locales[$_SESSION['locale']] . '" title="' . $locales[$_SESSION['locale']] . '"> ' . $locales[$_SESSION['locale']], $items);
+ return toolbar_dropdown('', '<img src="pic/flag/' . $_SESSION['locale'] . '.png" alt="' . $locales[$_SESSION['locale']] . '" title="' . $locales[$_SESSION['locale']] . '">', $items);
}
?> \ No newline at end of file