Skip to content

Commit

Permalink
Fix issue processwire/processwire-issues#468 where ProcessPageSearch …
Browse files Browse the repository at this point in the history
…wasn't working with ^= (starts with) search operator
  • Loading branch information
ryancramerdesign committed Jan 25, 2018
1 parent a021d3b commit b72e609
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -86,6 +86,8 @@ class ProcessPageSearch extends Process implements ConfigurableModule {
'*=' => __('Contains phrase or partial word', $f),
'%=' => __('Contains phrase/word using LIKE', $f),
'~=' => __('Contains all the words', $f),
'^=' => __('Starts with', $f),
'$=' => __('Ends with', $f),
);
}

Expand Down

0 comments on commit b72e609

Please sign in to comment.