diff options
author | Brion Vibber <brion@users.mediawiki.org> | 2004-07-03 06:03:00 +0000 |
---|---|---|
committer | Brion Vibber <brion@users.mediawiki.org> | 2004-07-03 06:03:00 +0000 |
commit | efcdb8d51797dc569107212e658f20002697712d (patch) | |
tree | 7c66c10d10a185ebf72d965f0b79ca6cf2c83fec | |
parent | ac35a99d763b15eb6b7525d28303b4cb4bf34d70 (diff) | |
download | mediawikicore-efcdb8d51797dc569107212e658f20002697712d.tar.gz mediawikicore-efcdb8d51797dc569107212e658f20002697712d.zip |
Quick fix for fulltext stopword list on mysql3. The include was moved into a function, changing the scope of the definition.
Notes
Notes:
http://mediawiki.org/wiki/Special:Code/MediaWiki/4214
-rw-r--r-- | includes/FulltextStoplist.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/FulltextStoplist.php b/includes/FulltextStoplist.php index 12c9d6bcb4e3..703fee80975a 100644 --- a/includes/FulltextStoplist.php +++ b/includes/FulltextStoplist.php @@ -4,6 +4,7 @@ # source file "myisam/ft_static.c" in the MySQL source distribution. # If you use a new version of MySQL, this might have to be changed. +global $wgFulltextStoplist; /* private */ $wgFulltextStoplist = array( "a", |