Actions
Bug #6832
closedUserlist searching of select values with spaces breaks the value
Description
When searching a select type field and the value contains a space it is split at the space. Example as follows.
Field: Drop Down (Single Select)
Advanced Search: is one of
Values: Value 1 and Value 2
Result:AND ((ue.`cb_dropdownsingle` = 'Value') OR (ue.`cb_dropdownsingle` = '2'))
Expected:AND ((ue.`cb_dropdownsingle` = 'Value 1') OR (ue.`cb_dropdownsingle` = 'Value 2'))
Actions