aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/database_update.php
diff options
context:
space:
mode:
authorOliver Schramm <oliver.schramm97@gmail.com>2013-05-26 23:16:13 +0200
committerOliver Schramm <oliver.schramm97@gmail.com>2013-05-29 13:20:47 +0200
commitc65617479df664f1d4cc03400ba46ca1ad5e95de (patch)
treea0827dfccc42ec80bdfbcbca6454f5814dee6691 /phpBB/install/database_update.php
parent7383841af55803c2f9dde9549c100bae179f800e (diff)
downloadforums-c65617479df664f1d4cc03400ba46ca1ad5e95de.tar
forums-c65617479df664f1d4cc03400ba46ca1ad5e95de.tar.gz
forums-c65617479df664f1d4cc03400ba46ca1ad5e95de.tar.bz2
forums-c65617479df664f1d4cc03400ba46ca1ad5e95de.tar.xz
forums-c65617479df664f1d4cc03400ba46ca1ad5e95de.zip
[ticket/11569] Add parameter to URL and remove comment
PHPBB3-11569
Diffstat (limited to 'phpBB/install/database_update.php')
-rw-r--r--phpBB/install/database_update.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index eefc50bd04..0da6ab1eb1 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -263,9 +263,8 @@ while (!$migrator->finished())
// 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)
{
- //echo '<meta http-equiv="refresh" content="0;url=' . str_replace('&', '&amp;', append_sid($phpbb_root_path . 'test.' . $phpEx)) . '" />';
echo $user->lang['DATABASE_UPDATE_NOT_COMPLETED'] . '<br />';
- echo '<a href="' . append_sid($phpbb_root_path . 'install/database_update.' . $phpEx) . '">' . $user->lang['DATABASE_UPDATE_CONTINUE'] . '</a>';
+ echo '<a href="' . append_sid($phpbb_root_path . 'install/database_update.' . $phpEx, 'language=' . $user->data['user_lang']) . '">' . $user->lang['DATABASE_UPDATE_CONTINUE'] . '</a>';
phpbb_end_update($cache, $config);
}