mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-07 23:41:59 +01:00
highlighting fix
This commit is contained in:
parent
1852d90211
commit
f2e85c8f18
@ -473,15 +473,15 @@ class ModelSearchMessage extends Model {
|
||||
private function highlight_search_terms($s = '', $terms = '', $html = 0) {
|
||||
$fields = array("from:", "to:", "subject:", "body:");
|
||||
|
||||
$terms = preg_replace("/(\'|\")/", "", $terms);
|
||||
$terms = preg_replace("/(\'|\"|\=|\>|\<)/", "", $terms);
|
||||
|
||||
$a = explode(" ", $terms);
|
||||
$terms = array();
|
||||
|
||||
while(list($k, $v) = each($a)) {
|
||||
if(strlen($v) >= 3 && !in_array($v, $fields)) {
|
||||
$v = preg_replace("/\W/", "", $v);
|
||||
array_push($terms, $v);
|
||||
//$v = preg_replace("/\W/", "", $v);
|
||||
if($v) { array_push($terms, $v); }
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user