From 14c192d69f839e65e7a0acac9f399c437bdd915f Mon Sep 17 00:00:00 2001 From: jacob Date: Fri, 8 Apr 2011 18:24:24 +0000 Subject: [PATCH] Added the pronunciation field to the user object for participants --- user.inc.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/user.inc.php b/user.inc.php index 82cb7b86..4d5a0548 100644 --- a/user.inc.php +++ b/user.inc.php @@ -335,6 +335,9 @@ function user_get_role_fields($role){ if($config['participant_student_foodreq'] == "yes"){ $fields[] = 'foodreq'; } + if($config['participant_student_pronunciation'] == "yes"){ + $fields[] = 'pronunciation'; + } break; case 'fair': $fields = array('fairs_id'); @@ -390,7 +393,8 @@ function user_get_field_info($noConference = false){ 'foodreq' => array('label' => 'Special Food Requirements', 'group' => 'Personal Information'), 'tshirt' => array('label' => 'T-shirt Size', 'group' => 'Personal Information'), 'medicalalert' => array('label' => 'Medical Alert Info', 'group' => 'Personal Information'), - 'emergencycontacts' => array('label' => 'Emergency Contacts', 'group' => 'Personal Information') + 'emergencycontacts' => array('label' => 'Emergency Contacts', 'group' => 'Personal Information'), + 'pronunciation' => array('label' => 'Name Pronunciation Key', 'group' => 'Personal Information') ); if($noConference){ $returnval['cat_prefs'] = array('label' => 'Category Preferences', 'group' => 'Judges');