1
0
mirror of https://github.com/processwire/processwire.git synced 2025-08-09 00:06:55 +02:00

Fix issue processwire/processwire-issues#314 - Lister bookmarks when used with parent.title and %= operator was not working correctly

This commit is contained in:
Ryan Cramer
2017-07-28 06:35:53 -04:00
parent f5d8633590
commit 0c42013c45

View File

@@ -407,7 +407,8 @@ class InputfieldSelector extends Inputfield implements ConfigurableModule {
),
'title' => array(
'input' => 'text',
'label' => ($titleField ? $titleField->getLabel() : 'Title')
'label' => ($titleField ? $titleField->getLabel() : 'Title'),
'operators' => $this->operatorsByType['text']
),
'id' => array(
'input' => 'number',