aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart van Bragt <bartvb@users.sourceforge.net>2002-01-31 23:19:00 +0000
committerBart van Bragt <bartvb@users.sourceforge.net>2002-01-31 23:19:00 +0000
commit9b69e6b50e1c0370ec0b7c3a92a8ba59e80fa900 (patch)
treeed7d4714f4e9537173ef7952f4425a69d0dcc93c
parent0b912384b6feef904e7cfbc465ac7865e51584f6 (diff)
downloadforums-9b69e6b50e1c0370ec0b7c3a92a8ba59e80fa900.tar
forums-9b69e6b50e1c0370ec0b7c3a92a8ba59e80fa900.tar.gz
forums-9b69e6b50e1c0370ec0b7c3a92a8ba59e80fa900.tar.bz2
forums-9b69e6b50e1c0370ec0b7c3a92a8ba59e80fa900.tar.xz
forums-9b69e6b50e1c0370ec0b7c3a92a8ba59e80fa900.zip
Fixed #509331, call to undefined function remove_common_global()
git-svn-id: file:///svn/phpbb/trunk@2031 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r--phpBB/upgrade.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/upgrade.php b/phpBB/upgrade.php
index e10b3be349..dc50e9e65b 100644
--- a/phpBB/upgrade.php
+++ b/phpBB/upgrade.php
@@ -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";
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>";
}
}