Skip to content

Commit e78ae56

Browse files
author
Richard Jones
committed
merge from HEAD
1 parent 0035fd7 commit e78ae56

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

CHANGES.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Fixed:
99
- handle "schema" being reserved word in MySQL 5+ (sf bug 1397569)
1010
- fixed documentation of filter() in the case of multiple values in a
1111
String search (sf bug 1373396)
12+
- fix comma-separated ID filter spec in web requests (sf bug 1396278)
1213

1314

1415
2005-10-07 0.8.5

roundup/cgi/templating.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2059,6 +2059,9 @@ def _post_init(self):
20592059
else:
20602060
if isinstance(fv, type([])):
20612061
self.filterspec[name] = [v.value for v in fv]
2062+
elif name == 'id':
2063+
# special case "id" property
2064+
self.filterspec[name] = handleListCGIValue(fv)
20622065
else:
20632066
self.filterspec[name] = fv.value
20642067

0 commit comments

Comments
 (0)