Commit 1229ab7
committed
Issue2550934 - templating.py-indexargs_form() returns id's as space separated list not comma separated
Compare
filter=id&id=1+2+3+4+5+6+7 (+ means space)
to
filter=id&id=1,2,3,4,5,6,7
the latter seems to be a valid filter and the index page search will
return items with those 7 id's. The former does not return the
expected 7 items.
Check to see if the name of the field is id. If it is don't treat it
as a string which pastes all the values together with spaces.1 parent 8d86d02 commit 1229ab7
1 file changed
+4
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
2763 | 2763 | | |
2764 | 2764 | | |
2765 | 2765 | | |
2766 | | - | |
| 2766 | + | |
| 2767 | + | |
| 2768 | + | |
| 2769 | + | |
2767 | 2770 | | |
2768 | 2771 | | |
2769 | 2772 | | |
| |||
0 commit comments