diff options
| author | Igor Wiedler <igor@wiedler.ch> | 2011-10-29 13:01:03 +0200 |
|---|---|---|
| committer | Igor Wiedler <igor@wiedler.ch> | 2011-10-29 13:01:03 +0200 |
| commit | 6d913d36466a308333535963f682c07b76df9369 (patch) | |
| tree | 21f0069109037f675365a23a50e8e3ed5e0e62e2 /phpBB/install/database_update.php | |
| parent | 319d12bedfecfaa352c4b21cbce471b348ead3bb (diff) | |
| parent | 81f9385477e1a6b050f447c9659faaf0bc7e871a (diff) | |
| download | forums-6d913d36466a308333535963f682c07b76df9369.tar forums-6d913d36466a308333535963f682c07b76df9369.tar.gz forums-6d913d36466a308333535963f682c07b76df9369.tar.bz2 forums-6d913d36466a308333535963f682c07b76df9369.tar.xz forums-6d913d36466a308333535963f682c07b76df9369.zip | |
Merge remote-tracking branch 'cs278/ticket/9307' into develop-olympus
* cs278/ticket/9307:
[ticket/9307] Add config variable to installation schema.
[ticket/9307] Remove hardcoded chunk size of mass emails.
Diffstat (limited to 'phpBB/install/database_update.php')
| -rw-r--r-- | phpBB/install/database_update.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index a167e79308..21246a215e 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -1994,6 +1994,11 @@ function change_database_data(&$no_updates, $version) // No changes from 3.0.9-RC4 to 3.0.9 case '3.0.9-RC4': break; + + // Changes from 3.0.9 to 3.0.10-RC1 + case '3.0.9': + set_config('email_max_chunk_size', '50'); + break; } } |
