mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-01 22:40:39 +02:00
Fix bug #46975 - "Report details" link broken in MCP
Authorised by: acydburn git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9675 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -134,6 +134,7 @@
|
|||||||
<li>[Fix] Correctly display ACP logs options, without permission to clear logs. (Bug #24155 - Patch by leviatan21)</li>
|
<li>[Fix] Correctly display ACP logs options, without permission to clear logs. (Bug #24155 - Patch by leviatan21)</li>
|
||||||
<li>[Fix] Display topic icons in MCP forum view again (only prosilver).</li>
|
<li>[Fix] Display topic icons in MCP forum view again (only prosilver).</li>
|
||||||
<li>[Fix] Properly display post status messages in topic when post is reported and unapproved (Bug #44455 - Patch by leviatan21)</li>
|
<li>[Fix] Properly display post status messages in topic when post is reported and unapproved (Bug #44455 - Patch by leviatan21)</li>
|
||||||
|
<li>[Fix] "Report details" link broken in MCP (Bug #46975 - Patch by nickvergessen)</li>
|
||||||
<li>[Change] Change the data format of the default file ACM to be more secure from tampering and have better performance.</li>
|
<li>[Change] Change the data format of the default file ACM to be more secure from tampering and have better performance.</li>
|
||||||
<li>[Change] Add index on log_time to the log table to prevent slowdown on boards with many log entries. (Bug #44665 - Patch by bantu)</li>
|
<li>[Change] Add index on log_time to the log table to prevent slowdown on boards with many log entries. (Bug #44665 - Patch by bantu)</li>
|
||||||
<li>[Change] Template engine now permits to a limited extent variable includes.</li>
|
<li>[Change] Template engine now permits to a limited extent variable includes.</li>
|
||||||
|
@@ -77,6 +77,7 @@ if ($mode == 'topic_logs')
|
|||||||
$post_id = request_var('p', 0);
|
$post_id = request_var('p', 0);
|
||||||
$topic_id = request_var('t', 0);
|
$topic_id = request_var('t', 0);
|
||||||
$forum_id = request_var('f', 0);
|
$forum_id = request_var('f', 0);
|
||||||
|
$report_id = request_var('r', 0);
|
||||||
$user_id = request_var('u', 0);
|
$user_id = request_var('u', 0);
|
||||||
$username = utf8_normalize_nfc(request_var('username', '', true));
|
$username = utf8_normalize_nfc(request_var('username', '', true));
|
||||||
|
|
||||||
@@ -323,13 +324,14 @@ function _module_reports_url($mode, &$module_row)
|
|||||||
|
|
||||||
function extra_url()
|
function extra_url()
|
||||||
{
|
{
|
||||||
global $forum_id, $topic_id, $post_id, $user_id;
|
global $forum_id, $topic_id, $post_id, $report_id, $user_id;
|
||||||
|
|
||||||
$url_extra = '';
|
$url_extra = '';
|
||||||
$url_extra .= ($forum_id) ? "&f=$forum_id" : '';
|
$url_extra .= ($forum_id) ? "&f=$forum_id" : '';
|
||||||
$url_extra .= ($topic_id) ? "&t=$topic_id" : '';
|
$url_extra .= ($topic_id) ? "&t=$topic_id" : '';
|
||||||
$url_extra .= ($post_id) ? "&p=$post_id" : '';
|
$url_extra .= ($post_id) ? "&p=$post_id" : '';
|
||||||
$url_extra .= ($user_id) ? "&u=$user_id" : '';
|
$url_extra .= ($user_id) ? "&u=$user_id" : '';
|
||||||
|
$url_extra .= ($report_id) ? "&r=$report_id" : '';
|
||||||
|
|
||||||
return $url_extra;
|
return $url_extra;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user