From b72e609cc4e46b9690588d713b475d33bd144fa0 Mon Sep 17 00:00:00 2001 From: Ryan Cramer Date: Thu, 25 Jan 2018 06:22:51 -0500 Subject: [PATCH] Fix issue processwire/processwire-issues#468 where ProcessPageSearch wasn't working with ^= (starts with) search operator --- wire/modules/Process/ProcessPageSearch/ProcessPageSearch.module | 2 ++ 1 file changed, 2 insertions(+) diff --git a/wire/modules/Process/ProcessPageSearch/ProcessPageSearch.module b/wire/modules/Process/ProcessPageSearch/ProcessPageSearch.module index 40696e5c..bc04dcaa 100644 --- a/wire/modules/Process/ProcessPageSearch/ProcessPageSearch.module +++ b/wire/modules/Process/ProcessPageSearch/ProcessPageSearch.module @@ -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), ); }