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

[ticket/10488] Only set $config['email_max_chunk_size'] when not already set.

PHPBB3-10488
This commit is contained in:
Andreas Fischer
2011-11-23 22:28:55 +01:00
parent f5633d281e
commit 43818289fe

View File

@@ -1999,7 +1999,12 @@ function change_database_data(&$no_updates, $version)
// Changes from 3.0.9 to 3.0.10-RC1
case '3.0.9':
set_config('email_max_chunk_size', '50');
if (!isset($config['email_max_chunk_size']))
{
set_config('email_max_chunk_size', '50');
}
$no_updates = false;
break;
}
}