forked from science-ation/science-ation
- Properly disable divisional checks for special award only judges
This commit is contained in:
parent
fc4de718f0
commit
c639892f3b
@ -69,7 +69,12 @@ function expertiseStatus()
|
|||||||
/* If the judging special awards are active, and the judge has
|
/* If the judging special awards are active, and the judge has
|
||||||
* selected "I am a special awards judge", then disable this */
|
* selected "I am a special awards judge", then disable this */
|
||||||
if($config['judges_specialaward_only_enable'] == 'yes') {
|
if($config['judges_specialaward_only_enable'] == 'yes') {
|
||||||
return "complete";
|
$q = mysql_query("SELECT typepref FROM judges WHERE
|
||||||
|
id='{$_SESSION['judges_id']}'");
|
||||||
|
if(mysql_num_rows($q) != 1) return "incomplete";
|
||||||
|
$r = mysql_fetch_object($q);
|
||||||
|
if($r->typepref == 'speconly')
|
||||||
|
return 'complete';
|
||||||
}
|
}
|
||||||
|
|
||||||
//and they need to rank all of the age categories
|
//and they need to rank all of the age categories
|
||||||
|
Loading…
x
Reference in New Issue
Block a user