aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorHenry Sudhof <kellanved@phpbb.com>2007-07-25 13:37:51 +0000
committerHenry Sudhof <kellanved@phpbb.com>2007-07-25 13:37:51 +0000
commitc28dc56084ec8b3e391d528ec05264a192001b19 (patch)
tree056e24948a4012c8335e5c9a834926e9713dad37 /phpBB
parent2213c23817c816aba92f226eba8c59c26d1003d1 (diff)
downloadforums-c28dc56084ec8b3e391d528ec05264a192001b19.tar
forums-c28dc56084ec8b3e391d528ec05264a192001b19.tar.gz
forums-c28dc56084ec8b3e391d528ec05264a192001b19.tar.bz2
forums-c28dc56084ec8b3e391d528ec05264a192001b19.tar.xz
forums-c28dc56084ec8b3e391d528ec05264a192001b19.zip
#13796
git-svn-id: file:///svn/phpbb/trunk@7945 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/docs/CHANGELOG.html3
-rw-r--r--phpBB/includes/mcp/mcp_queue.php2
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 {
<li>[Fix] Properly display the subscribe link in topic and forum display for Oracle (Bug #13583)</li>
<li>[Change] Add version number to ACP index (Bug #13703)</li>
<li>[Fix] Quick-Mod tools now retaining the start parameter (Bug #13537)</li>
- <li>[Fix] Several fixes for custom profile fields on multi-lingual boards </li>
+ <li>[Fix] Several fixes for custom profile fields on multi-lingual boards (Bugs #13763, #13527, #13525, #11515)</li>
+ <li>[Fix] Return to the mode previously selected after disaproving a post (Bug #13796)</li>
</ul>
</div>
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')) . '&amp;mode=unapproved_topics');
+ $redirect = request_var('redirect', build_url(array('t', 'mode', '_f_', 'quickmod')) . "&amp;mode=$mode");
$reason = utf8_normalize_nfc(request_var('reason', '', true));
$reason_id = request_var('reason_id', 0);
$success_msg = $additional_msg = '';