[ticket/13831] Store provided reason when deleting from Mod. Queue module.

PHPBB3-13831
This commit is contained in:
Cesar G 2015-10-14 19:41:44 -07:00
parent 240d07d0cf
commit f657680311

View file

@ -72,6 +72,7 @@ class mcp_queue
case 'delete': case 'delete':
$post_id_list = $request->variable('post_id_list', array(0)); $post_id_list = $request->variable('post_id_list', array(0));
$topic_id_list = $request->variable('topic_id_list', array(0)); $topic_id_list = $request->variable('topic_id_list', array(0));
$delete_reason = $request->variable('delete_reason', '', true);
if (!empty($post_id_list)) if (!empty($post_id_list))
{ {
@ -80,7 +81,7 @@ class mcp_queue
global $phpbb_root_path, $phpEx; global $phpbb_root_path, $phpEx;
include($phpbb_root_path . 'includes/mcp/mcp_main.' . $phpEx); include($phpbb_root_path . 'includes/mcp/mcp_main.' . $phpEx);
} }
mcp_delete_post($post_id_list, false, '', $action); mcp_delete_post($post_id_list, false, $delete_reason, $action);
} }
else if (!empty($topic_id_list)) else if (!empty($topic_id_list))
{ {
@ -89,7 +90,7 @@ class mcp_queue
global $phpbb_root_path, $phpEx; global $phpbb_root_path, $phpEx;
include($phpbb_root_path . 'includes/mcp/mcp_main.' . $phpEx); include($phpbb_root_path . 'includes/mcp/mcp_main.' . $phpEx);
} }
mcp_delete_topic($topic_id_list, false, '', $action); mcp_delete_topic($topic_id_list, false, $delete_reason, $action);
} }
else else
{ {