1
0
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:
Ryan Cramer
2018-01-25 06:22:51 -05:00
parent a021d3b54f
commit b72e609cc4

View File

@@ -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),
); );
} }