diff options
author | MateBartus <mate.bartus@gmail.com> | 2015-02-24 21:06:53 +0100 |
---|---|---|
committer | MateBartus <mate.bartus@gmail.com> | 2015-02-24 21:06:53 +0100 |
commit | b8dfbfe390590c16cc6a9a829ce17d55482ae230 (patch) | |
tree | d5d6167bbd1b7cee4db8d9bee82151bbc939a3ab /phpBB/includes/acp/acp_inactive.php | |
parent | 56cbff720d49c9ecc22549be2b2f742e539cd1c2 (diff) | |
download | forums-b8dfbfe390590c16cc6a9a829ce17d55482ae230.tar forums-b8dfbfe390590c16cc6a9a829ce17d55482ae230.tar.gz forums-b8dfbfe390590c16cc6a9a829ce17d55482ae230.tar.bz2 forums-b8dfbfe390590c16cc6a9a829ce17d55482ae230.tar.xz forums-b8dfbfe390590c16cc6a9a829ce17d55482ae230.zip |
[ticket/13636] Deleting inactive user in acp_users gives unexpected link
Success message did not provide the expected "previous page" link
(acp_inactive was expected, but the link took users to acp_users) if the
acp_users module was accessed by navigating from the inactive user list to
acp_users and then deleting inactive user.
PHPBB3-13636
Diffstat (limited to 'phpBB/includes/acp/acp_inactive.php')
-rw-r--r-- | phpBB/includes/acp/acp_inactive.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/acp/acp_inactive.php b/phpBB/includes/acp/acp_inactive.php index e96c42de05..473ef01b6a 100644 --- a/phpBB/includes/acp/acp_inactive.php +++ b/phpBB/includes/acp/acp_inactive.php @@ -271,7 +271,7 @@ class acp_inactive 'REMINDED_EXPLAIN' => $user->lang('USER_LAST_REMINDED', (int) $row['user_reminded'], $user->format_date($row['user_reminded_time'])), - 'USERNAME_FULL' => get_username_string('full', $row['user_id'], $row['username'], $row['user_colour'], false, append_sid("{$phpbb_admin_path}index.$phpEx", 'i=users&mode=overview')), + 'USERNAME_FULL' => get_username_string('full', $row['user_id'], $row['username'], $row['user_colour'], false, append_sid("{$phpbb_admin_path}index.$phpEx", 'i=users&mode=overview&referer=acp_inactive')), 'USERNAME' => get_username_string('username', $row['user_id'], $row['username'], $row['user_colour']), 'USER_COLOR' => get_username_string('colour', $row['user_id'], $row['username'], $row['user_colour']), |