includes/search.php
changeset 339 5d62ef764b0d
parent 322 5f1cd51bf1be
child 340 993fb077944f
--- 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;