1
0
Fork 0
mirror of https://github.com/sbrl/Pepperminty-Wiki.git synced 2024-05-31 21:52:56 +00:00

libsearchengine/didyoumean: fix infinite loop

This commit is contained in:
Starbeamrainbowlabs 2020-04-21 20:22:08 +01:00
parent d294c7e89a
commit 9f4dd1c149
Signed by: sbrl
GPG key ID: 1BE5172E637709C2

View file

@ -677,7 +677,9 @@ class search
error_log("[stas_parse/didyoumean] Now looking at #$i: ".var_export($result["terms"][$i], true)."(total count: $terms_count)");
if($result["terms"][$i]["exact"] || // Skip exact-only
$result["terms"][$i]["weight"] < 1 || // Skip stop & irrelevant words
self::invindex_term_exists($result["terms"][$i]["term"])) continue;
self::invindex_term_exists($result["terms"][$i]["term"])) {
$i++; continue;
}
// It's not a stop word or in the index, try and correct it
// self::didyoumean_correct auto-loads the didyoumean index on-demand
@ -685,7 +687,7 @@ class search
// Make a note if we fail to correct a term
if(!is_string($correction)) {
$result["terms"][$i]["corrected"] = false;
continue;
$i++; continue;
}
$result["terms"][$i]["term_before"] = $result["terms"][$i]["term"];