1
0
mirror of synced 2024-12-13 22:56:04 +03:00
This commit is contained in:
zYne 2007-08-07 20:17:11 +00:00
parent 34c898da0e
commit 643a3ea86b

View File

@ -291,9 +291,9 @@ class Doctrine_Tokenizer
continue; continue;
} }
if (empty($term[$i])) { if (empty($term[$i])) {
$term[$i] = trim($val); $term[$i] = $val;
} else { } else {
$term[$i] .= $str[($key + 1)] . trim($val); $term[$i] .= $str[($key - 1)] . $val;
} }
$c1 = substr_count($term[$i], $e1); $c1 = substr_count($term[$i], $e1);