diff options
author | Philip Häusler <msquare@notrademark.de> | 2014-08-23 02:16:12 +0200 |
---|---|---|
committer | Philip Häusler <msquare@notrademark.de> | 2014-08-23 02:16:12 +0200 |
commit | c5331c44fd5f0251e7ec572c3bfc50a9f52c86bf (patch) | |
tree | cb8afcbac9fcf611f518f7eb44cc8f5d6d22ccaf /includes/sys_menu.php | |
parent | f5a094fd8b32d44767f7fc30a65f407f4e1d9945 (diff) |
move language select to the top
Diffstat (limited to 'includes/sys_menu.php')
-rw-r--r-- | includes/sys_menu.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/includes/sys_menu.php b/includes/sys_menu.php index 407b784c..de7fc071 100644 --- a/includes/sys_menu.php +++ b/includes/sys_menu.php @@ -16,7 +16,9 @@ function page_link_to_absolute($page) { function header_toolbar() { global $p, $privileges, $user; - $toolbar_items = array(); + $toolbar_items = array( + make_langselect() + ); if (in_array('register', $privileges)) $toolbar_items[] = toolbar_item_link(page_link_to('register'), 'plus', register_title(), $p == 'register'); @@ -83,7 +85,7 @@ function make_navigation_for($name, $pages) { } function make_menu() { - return make_navigation() . make_langselect(); + return make_navigation(); } ?> |