diff options
author | terry%mozilla.org <> | 1999-09-28 06:25:16 +0200 |
---|---|---|
committer | terry%mozilla.org <> | 1999-09-28 06:25:16 +0200 |
commit | 92cee2c383c4e44693b69ed45390af31b4aca09d (patch) | |
tree | 55c6c6b582bf444b94e601cb69cfe9fecd2013a4 /reports.cgi | |
parent | 3ce4a388ef2109b31c933f8d66c61a668db0ecfa (diff) | |
download | bugzilla-92cee2c383c4e44693b69ed45390af31b4aca09d.tar.gz bugzilla-92cee2c383c4e44693b69ed45390af31b4aca09d.tar.xz |
Patch by Markus Rex <msrex@suse.de> -- add a param to contorl whether to show quips.
Diffstat (limited to 'reports.cgi')
-rwxr-xr-x | reports.cgi | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/reports.cgi b/reports.cgi index 21cfd780e..0b78969af 100755 --- a/reports.cgi +++ b/reports.cgi @@ -147,7 +147,13 @@ $charts <td align=left> <input type=checkbox name=links checked value=1> Links to Bugs<br> <input type=checkbox name=banner checked value=1> Banner<br> -<input type=checkbox name=quip value=1> Quip<br> +FIN + if (Param('usequip')) { + print "<input type=checkbox name=quip value=1> Quip<br>"; + } else { + print "<input type=hidden name=quip value=0>"; + } + print <<FIN; </td> </tr> <tr> |