This commit is contained in:
parent
34c898da0e
commit
643a3ea86b
1 changed files with 3 additions and 3 deletions
|
@ -291,11 +291,11 @@ 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);
|
||||||
$c2 = substr_count($term[$i], $e2);
|
$c2 = substr_count($term[$i], $e2);
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue