mirror of
https://bitbucket.org/jsuto/piler.git
synced 2025-02-05 12:18:37 +01:00
gui: fix folder search
Signed-off-by: Janos SUTO <sj@acts.hu>
This commit is contained in:
parent
3feefe973b
commit
2fa5eac578
@ -223,6 +223,7 @@ class ModelSearchSearch extends Model {
|
||||
$query = $this->sphx->query("SELECT id FROM " . SPHINX_MAIN_INDEX . " WHERE MATCH('$match') OPTION max_matches=" . (int)$query->num_rows);
|
||||
}
|
||||
|
||||
if(count($search_folders) > 1) {
|
||||
$f_bag = array();
|
||||
foreach($query->rows as $q) {
|
||||
array_push($f_bag, $q['id']);
|
||||
@ -237,6 +238,7 @@ class ModelSearchSearch extends Model {
|
||||
|
||||
if(LOG_LEVEL >= NORMAL) { syslog(LOG_INFO, sprintf("sql query: '%s' in %.2f s, %d hits", $query->query, $query->exec_time, $query->num_rows)); }
|
||||
}
|
||||
}
|
||||
else {
|
||||
$query = $this->sphx->query("SELECT message_id FROM " . SPHINX_FOLDER_INDEX . " WHERE folder_id IN ($q2) $sortorder LIMIT $offset,$pagelen OPTION max_matches=" . MAX_SEARCH_HITS, $search_folders);
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user