From 9b69e6b50e1c0370ec0b7c3a92a8ba59e80fa900 Mon Sep 17 00:00:00 2001 From: Bart van Bragt Date: Thu, 31 Jan 2002 23:19:00 +0000 Subject: [PATCH] Fixed #509331, call to undefined function remove_common_global() git-svn-id: file:///svn/phpbb/trunk@2031 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/upgrade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 "
Removing common words (words that appear in more than $common_percent of the posts)
\n"; flush(); - print "Removed " . remove_common_global($common_percent, 1) . " words that where too common.
"; + print "Removed " . remove_common($common_percent, 1) . " words that where too common.
"; } }