mirror of
https://github.com/processwire/processwire.git
synced 2025-08-11 17:24:46 +02:00
Fix issue processwire/processwire-issues#468 where ProcessPageSearch wasn't working with ^= (starts with) search operator
This commit is contained in:
@@ -86,6 +86,8 @@ class ProcessPageSearch extends Process implements ConfigurableModule {
|
|||||||
'*=' => __('Contains phrase or partial word', $f),
|
'*=' => __('Contains phrase or partial word', $f),
|
||||||
'%=' => __('Contains phrase/word using LIKE', $f),
|
'%=' => __('Contains phrase/word using LIKE', $f),
|
||||||
'~=' => __('Contains all the words', $f),
|
'~=' => __('Contains all the words', $f),
|
||||||
|
'^=' => __('Starts with', $f),
|
||||||
|
'$=' => __('Ends with', $f),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user