From 39c402f3f5eed1c054f33142b21f4ceb1a288bc1 Mon Sep 17 00:00:00 2001 From: justin Date: Tue, 13 Jul 2010 19:23:18 +0000 Subject: [PATCH] and make sure the setting doesn't override an existing school entry --- register_participants_students.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/register_participants_students.php b/register_participants_students.php index 7bb4a080..02b68ce8 100644 --- a/register_participants_students.php +++ b/register_participants_students.php @@ -430,7 +430,11 @@ if($config['participant_student_personal']=="yes") echo "\n"; while($r=mysql_fetch_object($schoolq)) { - if($studentinfo->schools_id==$r->id || $lastSchool ==$r->id) $sel="selected=\"selected\""; else $sel=""; + if($studentinfo->schools_id==$r->id || (!$studentinfo->schools_id && $lastSchool ==$r->id)) { + $sel="selected=\"selected\""; + } else { + $sel=""; + } echo "\n"; }