From 17b5ff2723c364bdfd9deea855ebb588474a208a Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 17 Jul 2003 20:45:03 +0000 Subject: [PATCH] Fixed call to renamed function show_combo_box(...). svn path=/trunk/boinc/; revision=1711 --- html/user/profile.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/user/profile.inc b/html/user/profile.inc index 7f0227315c..449d492273 100644 --- a/html/user/profile.inc +++ b/html/user/profile.inc @@ -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 ""; 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 "\n"; }