From ffbd84ad3d3e154fd90b5c8a2a8675134a8a230d Mon Sep 17 00:00:00 2001 From: wibyweb <49052850+wibyweb@users.noreply.github.com> Date: Mon, 25 Sep 2023 22:20:08 -0400 Subject: [PATCH] Add files via upload --- html/index.php | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/html/index.php b/html/index.php index e25821c..6f725c7 100755 --- a/html/index.php +++ b/html/index.php @@ -397,13 +397,13 @@ else $count++; $lastID = $row[0]; - $longestWord = str_replace("\'\'", "\'",$longestWord); - $queryNoQuotesOrFlags = str_replace("\'\'", "\'",$queryNoQuotesOrFlags); + $longestWord = str_replace("''", "'",$longestWord); + $queryNoQuotesOrFlags = str_replace("''", "'",$queryNoQuotesOrFlags); if($exactMatch == false && ($numRequiredWords == 0 || $numRequiredWords + $wordcount == $numRequiredWords)) { //remove the '*' at the end of the longest word if present - $longestWord = str_replace('*', "",$longestWord); + //$longestWord = str_replace('*', "",$longestWord); //first find an exact if(strlen($requiredword) > 0){ @@ -419,14 +419,14 @@ else { if($longestwordelementnum > 0) { - if(strpos($words[longestwordelementnum],'*') == true)//remove the '*' at the end of the query if present - $words[longestwordelementnum] = str_replace('*', "",$words[0]); + //if(strpos($words[longestwordelementnum],'*') == true)//remove the '*' at the end of the query if present + //$words[longestwordelementnum] = str_replace('*', "",$words[0]); $pos = stripos($body, $words[longestwordelementnum]); } else if($longestwordelementnum == 0) { - if(strpos($words[1],'*') == true)//remove the '*' at the end of the query if present - $words[1] = str_replace('*', "",$words[1]); + //if(strpos($words[1],'*') == true)//remove the '*' at the end of the query if present + //$words[1] = str_replace('*', "",$words[1]); $pos = stripos($body, $words[1]); } }