Skip to content

Commit 1051c82

Browse files
author
Richard Jones
committed
fix sort/group direction checkbox in issue.index.html [SF#1593025]
1 parent f1704a9 commit 1051c82

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Fixed:
1111
- fixed support for pysqlite2 (version 2.1.0 is the minimum version
1212
supported)
1313
- roundup-server called setuid when run by non-root user
14+
- fix sort/group direction checkbox in issue.index.html (sf bug 1593025)
1415

1516

1617
2006-10-07 1.2.1

templates/classic/html/issue.index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $Id: issue.index.html,v 1.25 2006-09-18 00:03:02 tobias-herp Exp $ -->
1+
<!-- $Id: issue.index.html,v 1.26 2006-11-09 00:46:54 richard Exp $ -->
22
<tal:block metal:use-macro="templates/page/macros/icing">
33
<title metal:fill-slot="head_title" >
44
<span tal:omit-tag="true" i18n:translate="" >List of issues</span>
@@ -119,8 +119,8 @@
119119
</select>
120120
</td>
121121
<th i18n:translate="">Descending:</th>
122-
<td><input type="checkbox" name="@sortdir"
123-
tal:attributes="checked python:key and key[0] == '-'">
122+
<td><input type="checkbox" tal:attributes="name python:'@sortdir%d'%n;
123+
checked python:key and key[0] == '-'">
124124
</td>
125125
</tr>
126126
</tal:block>
@@ -140,8 +140,8 @@
140140
</select>
141141
</td>
142142
<th i18n:translate="">Descending:</th>
143-
<td><input type="checkbox" name="@groupdir"
144-
tal:attributes="checked python:key and key[0] == '-'">
143+
<td><input type="checkbox" tal:attributes="name python:'@groupdir%d'%n;
144+
checked python:key and key[0] == '-'">
145145
</td>
146146
</tr>
147147
</tal:block>

0 commit comments

Comments
 (0)