Fixed call to renamed function show_combo_box(...).

svn path=/trunk/boinc/; revision=1711
This commit is contained in:
David Anderson 2003-07-17 20:45:03 +00:00
parent 2cb84c80f7
commit 17b5ff2723
1 changed files with 2 additions and 2 deletions

View File

@ -135,9 +135,9 @@ function show_language_selection() {
rowify("Selecting a language will help others with the same language preference to find each others' profiles and message board postings.");
echo "<tr><td>";
if ($profile_info) {
show_select("language", LANGUAGE_FILE, $profile_info['language']);
show_combo_box("language", LANGUAGE_FILE, $profile_info['language']);
} else {
show_select("language", LANGUAGE_FILE, "English");
show_combo_box("language", LANGUAGE_FILE, "English");
}
echo "</td></tr>\n";
}