Another bug, noticed before but not reported
I noticed this before but forgot to report it:
<option value="<?php echo $row_WADAseason['SCRUBID']?>"<?php if (!(strcmp($row_WADAseason['SCRUBID'], (isset($_GET["invalid"])?ValidatedField("hourUpd","SCRUB"):"".$row_WADAws_SCRUB2["SCRUB"]."")))) {"selected=\"selected\"";} ?>><?php echo $row_WADAseason['SCRUB3']?></option>
This is missing the echo before the {"selected=\"selected\"";}
<option value="<?php echo $row_WADAseason['SCRUBID']?>"<?php if (!(strcmp($row_WADAseason['SCRUBID'], (isset($_GET["invalid"])?ValidatedField("hourUpd","SCRUB"):"".$row_WADAws_SCRUB2["SCRUB"]."")))) {echo "selected=\"selected\"";} ?>><?php echo $row_WADAseason['SCRUB3']?></option>
It has happened every time I have created a dropdown menu via WADA.