diff options
author | Oliver Schramm <oliver.schramm97@gmail.com> | 2013-05-29 13:27:15 +0200 |
---|---|---|
committer | Oliver Schramm <oliver.schramm97@gmail.com> | 2013-05-29 13:27:15 +0200 |
commit | a79e229c25be067b64511ba4df8c3a7ea99b0994 (patch) | |
tree | 9f756baee0c9a096947ea926adcf59606e549df2 /phpBB/install | |
parent | c65617479df664f1d4cc03400ba46ca1ad5e95de (diff) | |
download | forums-a79e229c25be067b64511ba4df8c3a7ea99b0994.tar forums-a79e229c25be067b64511ba4df8c3a7ea99b0994.tar.gz forums-a79e229c25be067b64511ba4df8c3a7ea99b0994.tar.bz2 forums-a79e229c25be067b64511ba4df8c3a7ea99b0994.tar.xz forums-a79e229c25be067b64511ba4df8c3a7ea99b0994.zip |
[ticket/11569] Add type parameter and fix language variable
PHPBB3-11569
Diffstat (limited to 'phpBB/install')
-rw-r--r-- | phpBB/install/database_update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 0da6ab1eb1..be3cc60eaa 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -264,7 +264,7 @@ while (!$migrator->finished()) if ((time() - $update_start_time) >= $safe_time_limit) { echo $user->lang['DATABASE_UPDATE_NOT_COMPLETED'] . '<br />'; - echo '<a href="' . append_sid($phpbb_root_path . 'install/database_update.' . $phpEx, 'language=' . $user->data['user_lang']) . '">' . $user->lang['DATABASE_UPDATE_CONTINUE'] . '</a>'; + echo '<a href="' . append_sid($phpbb_root_path . 'install/database_update.' . $phpEx, 'type=' . $request->variable('type', 0) . '&language=' . $user->lang['USER_LANG']) . '">' . $user->lang['DATABASE_UPDATE_CONTINUE'] . '</a>'; phpbb_end_update($cache, $config); } |