diff options
author | Chris Smith <toonarmy@phpbb.com> | 2011-09-24 22:05:40 +0100 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2011-09-24 22:05:40 +0100 |
commit | 138d1050fcfa910eb8819e91034741ed74baf4f3 (patch) | |
tree | fdf06140efaf3bba49d76f7033cc97a29be9a7fc /phpBB/install/database_update.php | |
parent | abc0c336af4ace1f836cce107fcb307fa32e182c (diff) | |
download | forums-138d1050fcfa910eb8819e91034741ed74baf4f3.tar forums-138d1050fcfa910eb8819e91034741ed74baf4f3.tar.gz forums-138d1050fcfa910eb8819e91034741ed74baf4f3.tar.bz2 forums-138d1050fcfa910eb8819e91034741ed74baf4f3.tar.xz forums-138d1050fcfa910eb8819e91034741ed74baf4f3.zip |
[ticket/9307] Remove hardcoded chunk size of mass emails.
The new config option is 'email_max_chunk_size' I have not added
an interface option to change this.
PHPBB3-9307
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; } } |