aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorDhruv Goel <dhruv.goel92@gmail.com>2012-03-31 18:27:34 +0530
committerDhruv Goel <dhruv.goel92@gmail.com>2012-05-17 14:02:14 +0530
commit79ef96043546074e19bf849e7a58279b3b463c1a (patch)
treea2ff5427da7637e2caaa809213ecc5d59a07812d /phpBB
parent5ce46cc9603ccc153bf26168b18afee0f3b645af (diff)
downloadforums-79ef96043546074e19bf849e7a58279b3b463c1a.tar
forums-79ef96043546074e19bf849e7a58279b3b463c1a.tar.gz
forums-79ef96043546074e19bf849e7a58279b3b463c1a.tar.bz2
forums-79ef96043546074e19bf849e7a58279b3b463c1a.tar.xz
forums-79ef96043546074e19bf849e7a58279b3b463c1a.zip
[feature/delete-auto-logins] Fixes language entries and redirection.
The user is redirected after deleting auto login session keys. PHPBB3-9647
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/ucp/ucp_profile.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/includes/ucp/ucp_profile.php b/phpBB/includes/ucp/ucp_profile.php
index f3e0984685..2595e48fb5 100644
--- a/phpBB/includes/ucp/ucp_profile.php
+++ b/phpBB/includes/ucp/ucp_profile.php
@@ -635,7 +635,8 @@ class ucp_profile
$db->sql_query($sql);
- $message = $user->lang['AUTOLOGIN_SESSIONS_KEYS_DELETED'] . '<br /><br />' . sprintf($user->lang['RETURN_UCP'], '<a href="' . $this->u_action . '">', '</a>');
+ meta_refresh(3, $this->u_action);
+ $message = $user->lang['AUTOLOGIN_SESSION_KEYS_DELETED'] . '<br /><br />' . sprintf($user->lang['RETURN_UCP'], '<a href="' . $this->u_action . '">', '</a>');
trigger_error($message);
}
}