We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29e5d05 commit 4d35b7cCopy full SHA for 4d35b7c
CHANGES.txt
@@ -43,6 +43,7 @@ Fixed:
43
- handle "schema" being reserved word in MySQL 5+ (sf bug 1397569)
44
- fixed documentation of filter() in the case of multiple values in a
45
String search (sf bug 1373396)
46
+- fix comma-separated ID filter spec in web requests (sf bug 1396278)
47
48
49
2005-10-07 0.8.5
roundup/cgi/templating.py
@@ -2075,6 +2075,9 @@ def _post_init(self):
2075
else:
2076
if isinstance(fv, type([])):
2077
self.filterspec[name] = [v.value for v in fv]
2078
+ elif name == 'id':
2079
+ # special case "id" property
2080
+ self.filterspec[name] = handleListCGIValue(fv)
2081
2082
self.filterspec[name] = fv.value
2083
0 commit comments