mirror of
https://bitbucket.org/jsuto/piler.git
synced 2024-11-08 04:01:58 +01:00
fixed tag/note sphinx query
This commit is contained in:
parent
1b4e34167d
commit
87be05c534
@ -420,11 +420,11 @@ class ModelSearchSearch extends Model {
|
|||||||
|
|
||||||
$s = $this->fixup_sphinx_operators($s);
|
$s = $this->fixup_sphinx_operators($s);
|
||||||
|
|
||||||
$q = $this->sphx->query("SELECT id FROM $sphx_table WHERE uid=" . $session->get("uid") . " AND MATCH('@$field $s') ");
|
$q = $this->sphx->query("SELECT iid FROM $sphx_table WHERE uid=" . $session->get("uid") . " AND MATCH('@$field $s') ");
|
||||||
if(ENABLE_SYSLOG == 1) { syslog(LOG_INFO, "sphinx query: " . $q->query . ", hits: " . $q->total_found); }
|
if(ENABLE_SYSLOG == 1) { syslog(LOG_INFO, "sphinx query: " . $q->query . ", hits: " . $q->total_found); }
|
||||||
|
|
||||||
foreach($q->rows as $a) {
|
foreach($q->rows as $a) {
|
||||||
$id_list .= "," . $a['id'];
|
$id_list .= "," . $a['iid'];
|
||||||
}
|
}
|
||||||
|
|
||||||
if($id_list) { $id_list = substr($id_list, 1, strlen($id_list)); }
|
if($id_list) { $id_list = substr($id_list, 1, strlen($id_list)); }
|
||||||
|
Loading…
Reference in New Issue
Block a user