Fixed #509331, call to undefined function remove_common_global()

git-svn-id: file:///svn/phpbb/trunk@2031 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Bart van Bragt 2002-01-31 23:19:00 +00:00
parent 0b912384b6
commit 9b69e6b50e

View file

@ -1650,7 +1650,7 @@ if( !empty($next) )
{ {
print "<br>Removing common words (words that appear in more than $common_percent of the posts)<br>\n"; print "<br>Removing common words (words that appear in more than $common_percent of the posts)<br>\n";
flush(); flush();
print "Removed " . remove_common_global($common_percent, 1) . " words that where too common.<br>"; print "Removed " . remove_common($common_percent, 1) . " words that where too common.<br>";
} }
} }