From: Brion Vibber Date: Thu, 10 Jul 2003 04:53:50 +0000 (+0000) Subject: Fixme note X-Git-Tag: 1.1.0~421 X-Git-Url: http://git.cyclocoop.org/%22.%24image2.%22?a=commitdiff_plain;h=b2eaeaeb831bbdfd3076a1704d761d17f3d2138d;p=lhc%2Fweb%2Fwiklou.git Fixme note --- diff --git a/includes/FulltextStoplist.php b/includes/FulltextStoplist.php index ce0756f057..fbd5f9a40a 100644 --- a/includes/FulltextStoplist.php +++ b/includes/FulltextStoplist.php @@ -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 );