mirror of
https://github.com/e107inc/e107.git
synced 2025-08-01 12:20:44 +02:00
Reduced some memory usage.
This commit is contained in:
@@ -73,7 +73,7 @@ class e_search
|
||||
$this -> keywords['boolean'][$k_key] = FALSE;
|
||||
$this -> keywords['match'][$k_key] = $key;
|
||||
}
|
||||
$this -> keywords['exact'][$k_key] = ($tp->ustrpos($key, ' ') !== FALSE) ? TRUE : FALSE;
|
||||
$this -> keywords['exact'][$k_key] = $tp->ustrpos($key, ' ') !== false;
|
||||
$this -> keywords['match'][$k_key] = $tp -> toDB($this -> keywords['match'][$k_key]);
|
||||
}
|
||||
else {
|
||||
|
Reference in New Issue
Block a user