diff options
author | Chris Smith <toonarmy@phpbb.com> | 2009-07-27 12:43:57 +0000 |
---|---|---|
committer | Chris Smith <toonarmy@phpbb.com> | 2009-07-27 12:43:57 +0000 |
commit | d2aca86b4a1858200a032e7bf4fdd997bc339331 (patch) | |
tree | 99cb3c9afe09bc457c0aa364fd59dfb197bedbad /phpBB/includes/acp/acp_logs.php | |
parent | a96986744dbe5819b42baacc929c23fc8e57c746 (diff) | |
download | forums-d2aca86b4a1858200a032e7bf4fdd997bc339331.tar forums-d2aca86b4a1858200a032e7bf4fdd997bc339331.tar.gz forums-d2aca86b4a1858200a032e7bf4fdd997bc339331.tar.bz2 forums-d2aca86b4a1858200a032e7bf4fdd997bc339331.tar.xz forums-d2aca86b4a1858200a032e7bf4fdd997bc339331.zip |
Fix a bug in r9781 #48595
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@9871 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acp/acp_logs.php')
-rw-r--r-- | phpBB/includes/acp/acp_logs.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/includes/acp/acp_logs.php b/phpBB/includes/acp/acp_logs.php index 567606cfc7..d1e8b6d9c4 100644 --- a/phpBB/includes/acp/acp_logs.php +++ b/phpBB/includes/acp/acp_logs.php @@ -33,6 +33,7 @@ class acp_logs // 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; |