make sorting case-insensitive
This commit is contained in:
parent
be5b250319
commit
6a1b3d66d8
1 changed files with 1 additions and 1 deletions
|
@ -53,7 +53,7 @@ if (isset($_GET['q']) && preg_replace('/\s+/', '', $_GET['q']) != '') {
|
|||
while ($row = $stmt->fetch()) {
|
||||
$score = 0;
|
||||
foreach ($terms as $param)
|
||||
$score = $score + substr_count($row['content'],$param);
|
||||
$score = $score + substr_count(strtolower($row['content']),strtolower($param));
|
||||
array_push($scores, $score);
|
||||
$row['score'] = $score;
|
||||
array_push($rows, $row);
|
||||
|
|
Loading…
Reference in a new issue