aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorOliver Schramm <oliver.schramm97@gmail.com>2013-05-31 12:18:03 +0200
committerOliver Schramm <oliver.schramm97@gmail.com>2013-05-31 12:18:03 +0200
commitec2cdbed6179f551910759f0e22714d17a683026 (patch)
tree919202249025dccd37729dbca3e995f9336d9a99 /phpBB
parent8b0a6fd2cdf5a2dee53c5485fc7153c5ccde4a6f (diff)
downloadforums-ec2cdbed6179f551910759f0e22714d17a683026.tar
forums-ec2cdbed6179f551910759f0e22714d17a683026.tar.gz
forums-ec2cdbed6179f551910759f0e22714d17a683026.tar.bz2
forums-ec2cdbed6179f551910759f0e22714d17a683026.tar.xz
forums-ec2cdbed6179f551910759f0e22714d17a683026.zip
[ticket/11570] Fix link and make the notice more conspiciuous
PHPBB3-11570
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/install/database_update.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index 9f3fd41ef2..b20ca1e4ea 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -279,12 +279,12 @@ echo $user->lang['DATABASE_UPDATE_COMPLETE'] . '<br />';
if ($request->variable('type', 0))
{
- echo $user->lang['INLINE_UPDATE_SUCCESSFUL'] . '<br />';
- echo '<a href="' . append_sid($phpbb_root_path . 'intall/index.' . $phpEx, 'mode=update&amp;sub=file_check&amp;language=' . $user->lang['USER_LANG']) . '" class="button1">' . $user->lang['CONTINUE_UPDATE_NOW'] . '</a>';
+ echo $user->lang['INLINE_UPDATE_SUCCESSFUL'] . '<br /><br />';
+ echo '<a href="' . append_sid($phpbb_root_path . 'install/index.' . $phpEx, 'mode=update&amp;sub=file_check&amp;language=' . $user->lang['USER_LANG']) . '" class="button1">' . $user->lang['CONTINUE_UPDATE_NOW'] . '</a>';
}
else
{
- echo $user->lang['UPDATE_FILES_NOTICE'] . '<br />';
+ echo '<div class="errorbox">' . $user->lang['UPDATE_FILES_NOTICE'] . '</div>';
echo $user->lang['COMPLETE_LOGIN_TO_BOARD'];
}