From c28dc56084ec8b3e391d528ec05264a192001b19 Mon Sep 17 00:00:00 2001 From: Henry Sudhof Date: Wed, 25 Jul 2007 13:37:51 +0000 Subject: [PATCH] #13796 git-svn-id: file:///svn/phpbb/trunk@7945 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/docs/CHANGELOG.html | 3 ++- phpBB/includes/mcp/mcp_queue.php | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/phpBB/docs/CHANGELOG.html b/phpBB/docs/CHANGELOG.html index 9eb4d5928a..ad6e443d4b 100644 --- a/phpBB/docs/CHANGELOG.html +++ b/phpBB/docs/CHANGELOG.html @@ -275,7 +275,8 @@ p a {
  • [Fix] Properly display the subscribe link in topic and forum display for Oracle (Bug #13583)
  • [Change] Add version number to ACP index (Bug #13703)
  • [Fix] Quick-Mod tools now retaining the start parameter (Bug #13537)
  • -
  • [Fix] Several fixes for custom profile fields on multi-lingual boards
  • +
  • [Fix] Several fixes for custom profile fields on multi-lingual boards (Bugs #13763, #13527, #13525, #11515)
  • +
  • [Fix] Return to the mode previously selected after disaproving a post (Bug #13796)
  • diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php index 1e908b1c1f..06cabf65a0 100644 --- a/phpBB/includes/mcp/mcp_queue.php +++ b/phpBB/includes/mcp/mcp_queue.php @@ -733,7 +733,7 @@ function disapprove_post($post_id_list, $id, $mode) trigger_error('NOT_AUTHORISED'); } - $redirect = request_var('redirect', build_url(array('t', 'mode', '_f_', 'quickmod')) . '&mode=unapproved_topics'); + $redirect = request_var('redirect', build_url(array('t', 'mode', '_f_', 'quickmod')) . "&mode=$mode"); $reason = utf8_normalize_nfc(request_var('reason', '', true)); $reason_id = request_var('reason_id', 0); $success_msg = $additional_msg = '';