Skip to content

Commit 1bad88c

Browse files
author
Till Brehm
committed
Merge branch 'stable-3.1' of git.ispconfig.org:ispconfig/ispconfig3 into stable-3.1
2 parents ddfe16e + 3c2aca7 commit 1bad88c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

interface/lib/plugins/mail_user_filter_plugin.inc.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,7 @@ private function mail_user_filter_get_rule($page_form) {
177177
} elseif ($page_form->dataRecord["op"] == 'is') {
178178
$content .= "^".$searchterm."$";
179179
} elseif ($page_form->dataRecord["op"] == 'begins') {
180-
$content .= " ".$searchterm."";
180+
$content .= "^".$searchterm."";
181181
} elseif ($page_form->dataRecord["op"] == 'ends') {
182182
$content .= ".*".$searchterm."$";
183183
}

0 commit comments

Comments
 (0)