You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Expected results is that both lists are the same. But in queryCatalog.y it does the following:
for k in REQUEST.keys():
if k in ('SESSION',):
continue
v = REQUEST.get(k)
if v and k in indexes:
Which means that any value that is a pythonic False gets filtered out, including an actual False.
This is present in 4.3.3 and also master branch here on github.
The text was updated successfully, but these errors were encountered:
Steps to reproduce:
Make a new Plone site
Insert following scipts via ZMI into custom
And run it, result is:
Expected results is that both lists are the same. But in queryCatalog.y it does the following:
Which means that any value that is a pythonic False gets filtered out, including an actual False.
This is present in 4.3.3 and also master branch here on github.
The text was updated successfully, but these errors were encountered: