Skip to content

Commit 359b5d3

Browse files
author
Richard Jones
committed
merge from HEAD
1 parent 5a4aa67 commit 359b5d3

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ Fixed:
5959
- removed safeget() from the API (sf bug 994750)
6060
- demo tracker is always set up on localhost (sf bug 1049101)
6161

62+
6263
2004-10-06 0.7.11
6364
Fixed:
6465
- index args URL generation broken in .10 (sf bug 1096027)

roundup/cgi/templating.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2019,7 +2019,7 @@ def indexargs_form(self, columns=1, sort=1, group=1, filter=1,
20192019
l.append(s%(sc+'group', val))
20202020
if filter and self.filter:
20212021
l.append(s%(sc+'filter', ','.join(self.filter)))
2022-
if filterspec:
2022+
if self.classname and filterspec:
20232023
props = self.client.db.getclass(self.classname).getprops()
20242024
for k,v in self.filterspec.items():
20252025
if type(v) == type([]):

0 commit comments

Comments
 (0)