aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/mcp
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2013-07-11 12:12:18 +0200
committerJoas Schilling <nickvergessen@gmx.de>2013-07-11 12:12:18 +0200
commited151cd6aaa5ec875d56d33e8908771a1244f98a (patch)
treef6546b6becb5640ef7585ae8826b1b65b8ebd3c1 /phpBB/includes/mcp
parent5b47d731470ddc1b5723ed13b63cc3f90f3e6671 (diff)
downloadforums-ed151cd6aaa5ec875d56d33e8908771a1244f98a.tar
forums-ed151cd6aaa5ec875d56d33e8908771a1244f98a.tar.gz
forums-ed151cd6aaa5ec875d56d33e8908771a1244f98a.tar.bz2
forums-ed151cd6aaa5ec875d56d33e8908771a1244f98a.tar.xz
forums-ed151cd6aaa5ec875d56d33e8908771a1244f98a.zip
[ticket/9657] Add , to last element of an array
PHPBB3-9657
Diffstat (limited to 'phpBB/includes/mcp')
-rw-r--r--phpBB/includes/mcp/mcp_queue.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/phpBB/includes/mcp/mcp_queue.php b/phpBB/includes/mcp/mcp_queue.php
index a253a43136..a42ae6c48c 100644
--- a/phpBB/includes/mcp/mcp_queue.php
+++ b/phpBB/includes/mcp/mcp_queue.php
@@ -182,8 +182,8 @@ class mcp_queue
$template->assign_vars(array(
'S_TOPIC_REVIEW' => true,
'S_BBCODE_ALLOWED' => $post_info['enable_bbcode'],
- 'TOPIC_TITLE' => $post_info['topic_title'])
- );
+ 'TOPIC_TITLE' => $post_info['topic_title'],
+ ));
}
$extensions = $attachments = $topic_tracking_info = array();
@@ -246,8 +246,8 @@ class mcp_queue
foreach ($attachments as $attachment)
{
$template->assign_block_vars('attachment', array(
- 'DISPLAY_ATTACHMENT' => $attachment)
- );
+ 'DISPLAY_ATTACHMENT' => $attachment,
+ ));
}
}
}
@@ -922,8 +922,8 @@ class mcp_queue
'mode' => $mode,
'post_id_list' => $post_id_list,
'action' => 'disapprove',
- 'redirect' => $redirect)
- );
+ 'redirect' => $redirect,
+ ));
$notify_poster = $request->is_set('notify_poster');
$disapprove_reason = '';