diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2013-10-04 15:04:30 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2013-10-04 15:04:30 -0500 |
commit | efe130bcfc84577294069641621f93f0d9801d99 (patch) | |
tree | fcfba6f92de8fb5a6f0cc09fe1536aa3aa9bbc69 /phpBB/phpbb | |
parent | cd7d29b90edcf292464beaf3ab814750703f3f17 (diff) | |
download | forums-efe130bcfc84577294069641621f93f0d9801d99.tar forums-efe130bcfc84577294069641621f93f0d9801d99.tar.gz forums-efe130bcfc84577294069641621f93f0d9801d99.tar.bz2 forums-efe130bcfc84577294069641621f93f0d9801d99.tar.xz forums-efe130bcfc84577294069641621f93f0d9801d99.zip |
[ticket/11881] Limit to 500
PHPBB3-11881
Diffstat (limited to 'phpBB/phpbb')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/timezone.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/timezone.php b/phpBB/phpbb/db/migration/data/v310/timezone.php index 6106e179cb..61f8dc488e 100644 --- a/phpBB/phpbb/db/migration/data/v310/timezone.php +++ b/phpBB/phpbb/db/migration/data/v310/timezone.php @@ -42,7 +42,7 @@ class timezone extends \phpbb\db\migration\migration public function update_timezones($start) { $start = (int) $start; - $limit = 5000; + $limit = 500; $converted = 0; $update_blocks = array(); |