summaryrefslogtreecommitdiffstats
path: root/src/search_php.h
diff options
context:
space:
mode:
authordimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2003-11-12 21:12:36 (GMT)
committerdimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7>2003-11-12 21:12:36 (GMT)
commit8a5c51f2c968dee1283dce092e1ccc0d3df91f0e (patch)
treec055ae5f212c403dc425fc687a6e0c50ce812b0b /src/search_php.h
parenta2a1e97fd2b0e3045482aa46978ac2d0ae1c6e11 (diff)
downloadDoxygen-8a5c51f2c968dee1283dce092e1ccc0d3df91f0e.zip
Doxygen-8a5c51f2c968dee1283dce092e1ccc0d3df91f0e.tar.gz
Doxygen-8a5c51f2c968dee1283dce092e1ccc0d3df91f0e.tar.bz2
Release-1.3.4-20031112
Diffstat (limited to 'src/search_php.h')
-rw-r--r--src/search_php.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/search_php.h b/src/search_php.h
index 4213b19..2ffa41c 100644
--- a/src/search_php.h
+++ b/src/search_php.h
@@ -276,7 +276,7 @@
" $requiredWords = array();\n"
" $forbiddenWords = array();\n"
" $foundWords = array();\n"
-" $word=strtolower(strtok($query,\" \"));\n"
+" $word=strtok($query,\" \");\n"
" while ($word) // for each word in the search query\n"
" {\n"
" if (($word{0}=='+')) { $word=substr($word,1); $requiredWords[]=$word; }\n"
@@ -286,7 +286,7 @@
" $foundWords[]=$word;\n"
" search($file,$word,$results);\n"
" }\n"
-" $word=strtolower(strtok(\" \"));\n"
+" $word=strtok(\" \");\n"
" }\n"
" $docs = array();\n"
" combine_results($results,$docs);\n"