If there are no feeder fairs, dont let them choose any, infact, hide the option completely

This commit is contained in:
james 2010-01-22 19:56:59 +00:00
parent f695306f92
commit ff01502192

@ -440,7 +440,11 @@ function registration_load()
echo "<option $sel value=\"$k\">$v</option>";
}
?> </select></td>
</tr><tr>
</tr>
<?
if(count($fairs)>0) {
?>
<tr>
<td><?=i18n("Fair")?>:</td>
<td><select name="registration_fair">
<option value="0"><?=i18n('Independent/None')?></option>
@ -448,8 +452,17 @@ function registration_load()
$sel = ($fid == $r['fairs_id']) ? 'selected="selected"' : '';
echo "<option $sel value=\"$fid\">{$f['name']}</option>";
}
?> </select></td>
</tr></table>
?>
</select>
</td>
</tr>
<?
}
else {
echo "<input type=\"hidden\" name=\"registration_fair\" value=\"0\" />\n";
}
?>
</table>
<br /><br />
<button id="registration_save"><?=i18n('Save Registration Information')?></button>
</form>