htaccessing some directories for dev using cvs tree as www tree ;)
[lhc/web/wiklou.git] / includes / FulltextStoplist.php
index ce0756f..12c9d6b 100644 (file)
@@ -1,4 +1,4 @@
-<?
+<?php
 
 # This is the MySQL fulltext search stoplist, copied from the
 # source file "myisam/ft_static.c" in the MySQL source distribution.
@@ -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 );