|
From: Bart v. B. <ba...@us...> - 2002-01-31 23:38:02
|
Update of /cvsroot/phpbb/phpBB2 In directory usw-pr-cvs1:/tmp/cvs-serv22876 Modified Files: upgrade.php Log Message: Fixed #509331, call to undefined function remove_common_global() Index: upgrade.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/upgrade.php,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -r1.18 -r1.19 *** upgrade.php 2002/01/09 23:13:51 1.18 --- upgrade.php 2002/01/31 23:19:00 1.19 *************** *** 1651,1655 **** 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>"; } --- 1651,1655 ---- print "<br>Removing common words (words that appear in more than $common_percent of the posts)<br>\n"; flush(); ! print "Removed " . remove_common($common_percent, 1) . " words that where too common.<br>"; } |