Fixme note
authorBrion Vibber <brion@users.mediawiki.org>
Thu, 10 Jul 2003 04:53:50 +0000 (04:53 +0000)
committerBrion Vibber <brion@users.mediawiki.org>
Thu, 10 Jul 2003 04:53:50 +0000 (04:53 +0000)
includes/FulltextStoplist.php

index ce0756f..fbd5f9a 100644 (file)
@@ -582,7 +582,7 @@ class FulltextStoplist {
        /* static */ function inList( $word )
        {
                global $wgFulltextStoplist;
-
+               # FIXME: this will fail badly in many circumstances
                $w = strtolower( $word );
                $w = preg_replace( "/[^a-z']+/", "", $w );
                return in_array( $w, $wgFulltextStoplist );