mirror of
https://github.com/processwire/processwire.git
synced 2025-08-13 02:04:35 +02:00
Fix issue in InputfieldSelector with Lister bookmark fields containing field.subfield in OR conditions
This commit is contained in:
@@ -610,7 +610,7 @@ var InputfieldSelector = {
|
||||
si.checkbox.hide();
|
||||
}
|
||||
}
|
||||
if(s.field.indexOf('.') != s.field.lastIndexOf('.')) {
|
||||
if(s.field.indexOf('.') != s.field.lastIndexOf('.') && s.field.indexOf('|') < 0) {
|
||||
// convert field.subfield.id to just field.subfield
|
||||
s.field = s.field.substring(0, s.field.lastIndexOf('.'));
|
||||
}
|
||||
|
File diff suppressed because one or more lines are too long
Reference in New Issue
Block a user