Skip to content
Snippets Groups Projects
Commit 63201c6e authored by Osamu Higuchi's avatar Osamu Higuchi
Browse files

fixed indexer word counts for UTF-8 words #653

darcs-hash:20060126233702-87e23-9382dd77b66f263fa51ad02dc31264c667fdbc70.gz
parent bf5d40c2
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ function idx_getPageWords($page){
foreach ($arr as $w => $c) {
if (!is_numeric($w) && strlen($w) < 3) continue;
$w = utf8_strtolower($w);
$words[$w] = $c + (isset($words[$w]) ? $words[$w] : 0);
$words[$w] = $c * $count + (isset($words[$w]) ? $words[$w] : 0);
}
} else {
if (!is_numeric($word) && strlen($word) < 3) continue;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment