Allow committee to save xsmall tshirts too

This commit is contained in:
dave 2010-03-19 16:12:41 +00:00
parent 1e4b1d4e2a
commit d3c0746949

View File

@ -310,6 +310,8 @@ function students_load()
echo " <select name=\"tshirt[$x]\">\n";
if($studentinfo->tshirt=="none") $sel="selected=\"selected\""; else $sel="";
echo " <option $sel value=\"none\">".i18n("None")."</option>";
if($studentinfo->tshirt=="xsmall") $sel="selected=\"selected\""; else $sel="";
echo " <option $sel value=\"xsmall\">".i18n("X-Small")."</option>";
if($studentinfo->tshirt=="small") $sel="selected=\"selected\""; else $sel="";
echo " <option $sel value=\"small\">".i18n("Small")."</option>";
if($studentinfo->tshirt=="medium") $sel="selected=\"selected\""; else $sel="";