diff options
author | jocuri%softhome.net <> | 2004-11-03 06:27:06 +0000 |
---|---|---|
committer | jocuri%softhome.net <> | 2004-11-03 06:27:06 +0000 |
commit | cb9bb57018230e2f4b1cccdc90f2c4402a5d80b0 (patch) | |
tree | 7f11c8dc66336b40f9feacea059ad48e1df994a3 | |
parent | 3f73d7e93eee2578d7331407c62b19a396e64486 (diff) | |
download | bugs-cb9bb57018230e2f4b1cccdc90f2c4402a5d80b0.tar bugs-cb9bb57018230e2f4b1cccdc90f2c4402a5d80b0.tar.gz bugs-cb9bb57018230e2f4b1cccdc90f2c4402a5d80b0.tar.bz2 bugs-cb9bb57018230e2f4b1cccdc90f2c4402a5d80b0.tar.xz bugs-cb9bb57018230e2f4b1cccdc90f2c4402a5d80b0.zip |
Patch for bug 265011: Add missing <td> and </td> tags in query.cgi; patch by Frédéric Buclin <LpSolit@netscape.net>; r=kiko, a=justdave.
-rw-r--r-- | template/en/default/search/boolean-charts.html.tmpl | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/template/en/default/search/boolean-charts.html.tmpl b/template/en/default/search/boolean-charts.html.tmpl index 8caeac6e8..ae5992131 100644 --- a/template/en/default/search/boolean-charts.html.tmpl +++ b/template/en/default/search/boolean-charts.html.tmpl @@ -59,13 +59,14 @@ [% chartnum = loop.count - 1 %] <table> <tr> - <input type="checkbox" id="negate[% chartnum FILTER html %]" + <td> + <input type="checkbox" id="negate[% chartnum FILTER html %]" name="negate[% chartnum FILTER html %]" value="1" - [% "checked" IF chart.negate %] - > - <label for="negate[% chartnum FILTER html %]"> - Not (negate this whole chart) - </label> + [% "checked" IF chart.negate %]> + <label for="negate[% chartnum FILTER html %]"> + Not (negate this whole chart) + </label> + </td> </tr> [% FOREACH row = chart.rows %] [% rownum = loop.count - 1 %] |