Reverting some changes that I inadvertently committed.

This commit is contained in:
jacob 2010-04-13 20:33:27 +00:00
parent 0cd172c48b
commit d6fa48f85a

View File

@ -89,16 +89,15 @@
"user_personal.php", "user_personal_info_status", array($u)); "user_personal.php", "user_personal_info_status", array($u));
user_page_summary_item("Other Information", user_page_summary_item("Other Information",
"judge_other.php", "judge_status_other", array($u)); "judge_other.php", "judge_status_other", array($u));
if($config['judges_specialaward_enable'] != 'yes' || $u['special_award_only'] != 'yes') { user_page_summary_item("Areas of Expertise",
user_page_summary_item("Areas of Expertise", "judge_expertise.php", "judge_status_expertise", array($u));
"judge_expertise.php", "judge_status_expertise", array($u));
}
if($config['judges_availability_enable'] == 'yes') { if($config['judges_availability_enable'] == 'yes') {
user_page_summary_item("Time Availability", user_page_summary_item("Time Availability",
"judge_availability.php", "judge_status_availability", array($u)); "judge_availability.php", "judge_status_availability", array($u));
} }
if($config['judges_specialaward_enable'] == 'yes' && $u['special_award_only'] == 'yes') { if($config['judges_specialaward_enable'] == 'yes' || $u['special_award_only'] == 'yes') {
user_page_summary_item("Special Award Preferences", user_page_summary_item("Special Award Preferences",
"judge_special_awards.php", "judge_status_special_awards", array($u)); "judge_special_awards.php", "judge_status_special_awards", array($u));
} }