diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2003-11-12 21:12:36 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2003-11-12 21:12:36 (GMT) |
commit | 5806ce2084c3c1c80ddaa1d84516837b97468836 (patch) | |
tree | c055ae5f212c403dc425fc687a6e0c50ce812b0b /src/search_php.h | |
parent | bfaab3acda7ec81a51a45372673f5be07745773b (diff) | |
download | Doxygen-5806ce2084c3c1c80ddaa1d84516837b97468836.zip Doxygen-5806ce2084c3c1c80ddaa1d84516837b97468836.tar.gz Doxygen-5806ce2084c3c1c80ddaa1d84516837b97468836.tar.bz2 |
Release-1.3.4-20031112
Diffstat (limited to 'src/search_php.h')
-rw-r--r-- | src/search_php.h | 4 |
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" |