forked from science-ation/science-ation
equality, not assignment operators would help I guess
This commit is contained in:
parent
337d5acac2
commit
2f443868d0
@ -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")."\" />";
|
||||
|
Loading…
Reference in New Issue
Block a user