diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2016-08-11 15:37:53 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2016-08-11 17:59:51 +0200 |
commit | b00a39b9adeca86f2c2777a74d6f4f8325ee7743 (patch) | |
tree | 4e6389834954f8803057f8bad436c50ae75a09f5 /phpBB/install | |
parent | 6078bae7f8888f6c1d8bdc9a409b3e0a9cb3cc49 (diff) | |
download | forums-b00a39b9adeca86f2c2777a74d6f4f8325ee7743.tar forums-b00a39b9adeca86f2c2777a74d6f4f8325ee7743.tar.gz forums-b00a39b9adeca86f2c2777a74d6f4f8325ee7743.tar.bz2 forums-b00a39b9adeca86f2c2777a74d6f4f8325ee7743.tar.xz forums-b00a39b9adeca86f2c2777a74d6f4f8325ee7743.zip |
[ticket/14742] Make $last_run_migration protected
PHPBB3-14742
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/database_update.php | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 0ea6eeffd7..f367ae1fc0 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -211,13 +211,6 @@ while (!$migrator->finished()) phpbb_end_update($cache, $config); } - $state = array_merge(array( - 'migration_schema_done' => false, - 'migration_data_done' => false, - ), - $migrator->last_run_migration['state'] - ); - // Are we approaching the time limit? If so we want to pause the update and continue after refreshing if ((time() - $update_start_time) >= $safe_time_limit) { |