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 0035fd7 commit e78ae56Copy full SHA for e78ae56
CHANGES.txt
@@ -9,6 +9,7 @@ Fixed:
9
- handle "schema" being reserved word in MySQL 5+ (sf bug 1397569)
10
- fixed documentation of filter() in the case of multiple values in a
11
String search (sf bug 1373396)
12
+- fix comma-separated ID filter spec in web requests (sf bug 1396278)
13
14
15
2005-10-07 0.8.5
roundup/cgi/templating.py
@@ -2059,6 +2059,9 @@ def _post_init(self):
2059
else:
2060
if isinstance(fv, type([])):
2061
self.filterspec[name] = [v.value for v in fv]
2062
+ elif name == 'id':
2063
+ # special case "id" property
2064
+ self.filterspec[name] = handleListCGIValue(fv)
2065
2066
self.filterspec[name] = fv.value
2067
0 commit comments