1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-05 00:07:44 +02:00

some 2.0.x fixes for some annoying bugs and some not so annoying ones.

git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@6981 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2007-02-10 12:14:24 +00:00
parent 0896dc5eca
commit 5d7276af5a
8 changed files with 84 additions and 88 deletions

View File

@@ -26,7 +26,7 @@
//
function make_forum_select($box_name, $ignore_forum = false, $select_forum = '')
{
global $db, $userdata;
global $db, $userdata, $lang;
$is_auth_ary = auth(AUTH_READ, AUTH_LIST_ALL, $userdata);
@@ -49,7 +49,7 @@ function make_forum_select($box_name, $ignore_forum = false, $select_forum = '')
}
}
$forum_list = ( $forum_list == '' ) ? '<option value="-1">-- ! No Forums ! --</option>' : '<select name="' . $box_name . '">' . $forum_list . '</select>';
$forum_list = ( $forum_list == '' ) ? $lang['No_forums'] : '<select name="' . $box_name . '">' . $forum_list . '</select>';
return $forum_list;
}