Fix a bug on the special award nominations where the list of eligible awards wasnt restricted to the current fairyear

This commit is contained in:
james 2007-10-02 21:37:09 +00:00
parent 2e1ed4a689
commit 4b245289b9

View File

@ -115,6 +115,8 @@ function getSpecialAwardsEligibleForProject($projectid)
AND award_awards.id is not null
AND projects.year='".$config['FAIRYEAR']."'
AND projects.id='$projectid'
AND award_types.year='".$config['FAIRYEAR']."'
AND award_awards.year='".$config['FAIRYEAR']."'
ORDER BY
award_awards.name
");