diff -r 915d399dfdbf -r 5d62ef764b0d includes/search.php --- a/includes/search.php Sun Dec 23 17:58:21 2007 -0500 +++ b/includes/search.php Thu Dec 27 11:35:00 2007 -0500 @@ -75,7 +75,7 @@ $words = explode(' ', $letters); foreach($words as $c => $w) { - if(strlen($w) < 2 || in_array($w, $stopwords)) + if(strlen($w) < 2 || in_array($w, $stopwords) || strlen($w) > 63) unset($words[$c]); else $words[$c] = $w;