forked from science-ation/science-ation
- check for the number of tours before checking for tour assignment. This
fixes a bug where tour status always showed complete.
This commit is contained in:
parent
099453e2c3
commit
3d1483975a
@ -258,22 +258,24 @@ function tourStatus($reg_id="")
|
|||||||
$sid = $s->id;
|
$sid = $s->id;
|
||||||
$qq=mysql_query("SELECT * FROM tours_choice WHERE students_id='$sid' and year='{$config['FAIRYEAR']}' ORDER BY rank");
|
$qq=mysql_query("SELECT * FROM tours_choice WHERE students_id='$sid' and year='{$config['FAIRYEAR']}' ORDER BY rank");
|
||||||
|
|
||||||
/* See if there's a rank 0 tour (rank 0 == their tour assignment) */
|
$n_tours = mysql_num_rows($qq);
|
||||||
$i = mysql_fetch_object($qq);
|
if($n_tours > 0) {
|
||||||
if($i->rank == 0) {
|
/* See if there's a rank 0 tour (rank 0 == their tour assignment) */
|
||||||
/* Yes, there is, no matter what, this student's tour
|
$i = mysql_fetch_object($qq);
|
||||||
* selection is complete. */
|
if($i->rank == 0) {
|
||||||
continue;
|
/* Yes, there is, no matter what, this student's tour
|
||||||
|
* selection is complete. */
|
||||||
|
continue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Else, they haven't been assigned a tour, see if they've made
|
/* Else, they haven't been assigned a tour, see if they've made
|
||||||
* the appropraite selection(s) */
|
* the appropraite selection(s) */
|
||||||
$n_tours = mysql_num_rows($qq);
|
|
||||||
|
|
||||||
if( ($n_tours >= $config['tours_choices_min']) && ($n_tours <= $config['tours_choices_max']) ){
|
if( ($n_tours >= $config['tours_choices_min']) && ($n_tours <= $config['tours_choices_max']) ){
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
$ret = "incomplete";
|
$ret = "incomplete";
|
||||||
|
break;
|
||||||
}
|
}
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user