From 10929c56e6245175b0fdb707ea900d554bd3f931 Mon Sep 17 00:00:00 2001 From: real_nowhereman Date: Sun, 10 Feb 2008 15:15:21 +0000 Subject: [PATCH] search phrase was not lowercased, but content strings were --- search.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/search.php b/search.php index 5f523ab..017f276 100755 --- a/search.php +++ b/search.php @@ -50,7 +50,8 @@ if (!defined('MOD_INDEX')) { if(isset($_GET['q']) && $kw = trim($_GET['q'])) { $title = $lang['search']['head']; $content = "shared:search_results.tpl"; - + + $kw = strtolower($kw); search_do($kw); } else {