Skip to content
Snippets Groups Projects
Commit b2bc63f0 authored by Andreas Gohr's avatar Andreas Gohr
Browse files

bracket fix in inc/indexer.php

darcs-hash:20061114210440-7ad00-841acaf84e77e7bea16b96317531bd502ee44938.gz
parent c6e62e9f
No related branches found
No related tags found
No related merge requests found
......@@ -115,7 +115,7 @@ function idx_getPageWords($page){
foreach ($arr as $w => $c) {
$l = strlen($w);
if(isset($words[$l])){
$words[$l][$w] = $c * $count + (isset($words[$l][$w])) ? $words[$l][$w] : 0;
$words[$l][$w] = $c * $count + (isset($words[$l][$w]) ? $words[$l][$w] : 0);
}else{
$words[$l] = array($w => $c * $count);
}
......
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