diff options
author | Chris Smith <toonarmy@phpbb.com> | 2008-09-11 00:30:10 +0000 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2008-09-11 00:30:10 +0000 |
commit | 572d5bd8c1bb2a175fb6cfafa24a4d0c516b69d0 (patch) | |
tree | 465ca74a20429f37ec135c3d59b1f98684b1a5b4 /phpBB | |
parent | 7645614f90ea309c71bba2a2cfbe6d1dcdc89052 (diff) | |
download | forums-572d5bd8c1bb2a175fb6cfafa24a4d0c516b69d0.tar forums-572d5bd8c1bb2a175fb6cfafa24a4d0c516b69d0.tar.gz forums-572d5bd8c1bb2a175fb6cfafa24a4d0c516b69d0.tar.bz2 forums-572d5bd8c1bb2a175fb6cfafa24a4d0c516b69d0.tar.xz forums-572d5bd8c1bb2a175fb6cfafa24a4d0c516b69d0.zip |
Add a missing & to the return to topic URL when closing a report
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8840 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/includes/mcp/mcp_reports.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/includes/mcp/mcp_reports.php b/phpBB/includes/mcp/mcp_reports.php index e1a8111c29..9362dc0627 100644 --- a/phpBB/includes/mcp/mcp_reports.php +++ b/phpBB/includes/mcp/mcp_reports.php @@ -635,7 +635,7 @@ function close_report($report_id_list, $mode, $action) $return_topic = ''; if (sizeof($topic_ids == 1)) { - $return_topic = sprintf($user->lang['RETURN_TOPIC'], '<a href="' . append_sid("{$phpbb_root_path}viewtopic.$phpEx", 't=' . current($topic_ids) . 'f=' . current($forum_ids)) . '">', '</a>') . '<br /><br />'; + $return_topic = sprintf($user->lang['RETURN_TOPIC'], '<a href="' . append_sid("{$phpbb_root_path}viewtopic.$phpEx", 't=' . current($topic_ids) . '&f=' . current($forum_ids)) . '">', '</a>') . '<br /><br />'; } trigger_error($user->lang[$success_msg] . '<br /><br />' . $return_forum . $return_topic . sprintf($user->lang['RETURN_PAGE'], "<a href=\"$redirect\">", '</a>')); |