diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-11-12 21:12:36 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2003-11-12 21:12:36 (GMT) |
commit | 8a5c51f2c968dee1283dce092e1ccc0d3df91f0e (patch) | |
tree | c055ae5f212c403dc425fc687a6e0c50ce812b0b /src/search.php | |
parent | a2a1e97fd2b0e3045482aa46978ac2d0ae1c6e11 (diff) | |
download | Doxygen-8a5c51f2c968dee1283dce092e1ccc0d3df91f0e.zip Doxygen-8a5c51f2c968dee1283dce092e1ccc0d3df91f0e.tar.gz Doxygen-8a5c51f2c968dee1283dce092e1ccc0d3df91f0e.tar.bz2 |
Release-1.3.4-20031112
Diffstat (limited to 'src/search.php')
-rw-r--r-- | src/search.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/search.php b/src/search.php index 7075ea3..bc4330d 100644 --- a/src/search.php +++ b/src/search.php @@ -276,7 +276,7 @@ function main() $requiredWords = array(); $forbiddenWords = array(); $foundWords = array(); - $word=strtolower(strtok($query," ")); + $word=strtok($query," "); while ($word) // for each word in the search query { if (($word{0}=='+')) { $word=substr($word,1); $requiredWords[]=$word; } @@ -286,7 +286,7 @@ function main() $foundWords[]=$word; search($file,$word,$results); } - $word=strtolower(strtok(" ")); + $word=strtok(" "); } $docs = array(); combine_results($results,$docs); |