-
Notifications
You must be signed in to change notification settings - Fork 10
Open
Description
Hello,
I am encountering difficulties using the Taxonomy section of the "Resource List" module. I need to perform an OR search, but the system returns an AND search instead.
Example: I want to filter my records on two fields (name and Keywords) and allow the user to enter as many words as they want, separated by a comma.
The result is partially correct:
WHERE ressources.`types` != ? AND
( LOWER(CAST(ressources.`keywords` AS CHAR)) REGEXP LOWER(?)
AND LOWER(CAST(ressources.`keywords` AS CHAR)) REGEXP LOWER(?)
)
AND -- <--- WHY ? ----
( LOWER(CAST(ressources.`name` AS CHAR)) REGEXP LOWER(?)
AND LOWER(CAST(ressources.`name` AS CHAR)) REGEXP LOWER(?)
)
I would like these two filters to be linked by an OR, but the module generates an AND. However, I have used the "OR" action button in the taxonomy section.
Is there a bug, or am I misunderstanding how to use the module's configuration?
Thank you in advance.
Metadata
Metadata
Assignees
Labels
No labels
