Skip to content
Snippets Groups Projects
Commit 8afac82c authored by tbrehm's avatar tbrehm
Browse files

Fixed: FS#889 - Email filter "Begins With" bug

parent a8dc8ba6
No related branches found
No related tags found
2 merge requests!46Master,!21Master
...@@ -148,7 +148,7 @@ if ( ".'$RETURNCODE'." != 1 ) ...@@ -148,7 +148,7 @@ if ( ".'$RETURNCODE'." != 1 )
} elseif ($this->dataRecord["op"] == 'is') { } elseif ($this->dataRecord["op"] == 'is') {
$content .= $searchterm."$/:h)\n"; $content .= $searchterm."$/:h)\n";
} elseif ($this->dataRecord["op"] == 'begins') { } elseif ($this->dataRecord["op"] == 'begins') {
$content .= $searchterm."/:h)\n"; $content .= " ".$searchterm."/:h)\n";
} elseif ($this->dataRecord["op"] == 'ends') { } elseif ($this->dataRecord["op"] == 'ends') {
$content .= ".*".$searchterm."$/:h)\n"; $content .= ".*".$searchterm."$/:h)\n";
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment