From: Chris S. <too...@ph...> - 2009-07-27 12:44:19
|
Author: toonarmy Date: Mon Jul 27 13:43:57 2009 New Revision: 9871 Log: Fix a bug in r9781 #48595 Modified: branches/phpBB-3_0_0/phpBB/includes/acp/acp_logs.php Modified: branches/phpBB-3_0_0/phpBB/includes/acp/acp_logs.php ============================================================================== *** branches/phpBB-3_0_0/phpBB/includes/acp/acp_logs.php (original) --- branches/phpBB-3_0_0/phpBB/includes/acp/acp_logs.php Mon Jul 27 13:43:57 2009 *************** *** 33,38 **** --- 33,39 ---- // Set up general vars $action = request_var('action', ''); $forum_id = request_var('f', 0); + $topic_id = request_var('t', 0); $start = request_var('start', 0); $deletemark = (!empty($_POST['delmarked'])) ? true : false; $deleteall = (!empty($_POST['delall'])) ? true : false; |