mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
- fixed bugs #1395, #1177, fixed floating point assignment bug within older php versions ($fraction), adjusted search a little bit by implementing a workaround for database timeouts (hopefully Paul will not slap me for this. :D) - should be tested within high-traffic boards or those affected by the database timeout.
git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3585 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -712,7 +712,7 @@ switch ($row['config_value'])
|
||||
closedir($dir);
|
||||
|
||||
// Mark common words ...
|
||||
remove_common('global', 0.4);
|
||||
remove_common('global', 4/10);
|
||||
|
||||
// remove superfluous polls ... grab polls with topics then delete polls
|
||||
// not in that list
|
||||
|
@@ -1926,7 +1926,7 @@ if ( !empty($next) )
|
||||
// Remove common words after the first 2 batches and after every 4th batch after that.
|
||||
if ( $batchcount % 4 == 3 )
|
||||
{
|
||||
remove_common('global', 0.4);
|
||||
remove_common('global', 4/10);
|
||||
}
|
||||
|
||||
print " <span class=\"ok\"><b>OK</b></span><br />\n";
|
||||
|
Reference in New Issue
Block a user