equality, not assignment operators would help I guess

This commit is contained in:
justin 2007-12-21 00:35:31 +00:00
parent 337d5acac2
commit 2f443868d0

View File

@ -65,9 +65,9 @@
echo "</select></td></tr>";
echo "<tr><td colspan=3><b>".i18n("Show awards without winners").":</b></td>";
echo "<td><input name=\"show_unawarded_awards\" type=\"checkbox\" ".($config['reports_show_unawarded_awards'] = 'yes' ? "checked" : "")."/></td></tr>";
echo "<td><input name=\"show_unawarded_awards\" type=\"checkbox\" ".($config['reports_show_unawarded_awards'] == 'yes' ? "checked" : "")."/></td></tr>";
echo "<tr><td colspan=3><b>".i18n("Show prizes without winners").":</b></td>";
echo "<td><input name=\"show_unawarded_prizes\" type=\"checkbox\" ".($config['reports_show_unawarded_prizes'] = 'yes' ? "checked" : "")."/></td></tr>";
echo "<td><input name=\"show_unawarded_prizes\" type=\"checkbox\" ".($config['reports_show_unawarded_prizes'] == 'yes' ? "checked" : "")."/></td></tr>";
echo "</table>";
echo "<input type=\"submit\" value=\"".i18n("Generate Script")."\" />";