1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 14:00:31 +02:00

Merge branch 'develop-olympus' into develop

* develop-olympus:
  [ticket/9884] Reduce queue interval to 60 seconds, email package size to 20
This commit is contained in:
Nils Adermann
2010-11-10 15:58:12 +01:00
2 changed files with 13 additions and 2 deletions

View File

@@ -1849,6 +1849,17 @@ function change_database_data(&$no_updates, $version)
// Unread posts search load switch
set_config('load_unreads_search', '1');
// Reduce queue interval to 60 seconds, email package size to 20
if ($config['queue_interval'] == 600)
{
set_config('queue_interval', '60');
}
if ($config['email_package_size'] == 50)
{
set_config('email_package_size', '20');
}
$no_updates = false;
break;
}