aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/viewtopic.php
diff options
context:
space:
mode:
authorFyorl <gaelreth@gmail.com>2012-08-20 21:52:42 +0100
committerFyorl <gaelreth@gmail.com>2012-08-20 21:52:42 +0100
commite1a4aa3ea255874660d31e13c0b4cadc8993ef4f (patch)
tree6b8613adadfb1945f7b9636e3ce87cbe93f3373a /phpBB/viewtopic.php
parentb1239f1c1aca6a96ed3b470e1d386ec1d1024de7 (diff)
downloadforums-e1a4aa3ea255874660d31e13c0b4cadc8993ef4f.tar
forums-e1a4aa3ea255874660d31e13c0b4cadc8993ef4f.tar.gz
forums-e1a4aa3ea255874660d31e13c0b4cadc8993ef4f.tar.bz2
forums-e1a4aa3ea255874660d31e13c0b4cadc8993ef4f.tar.xz
forums-e1a4aa3ea255874660d31e13c0b4cadc8993ef4f.zip
[feature/attach-dl] Removed the use of some abbreviations
PHPBB3-11042
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r--phpBB/viewtopic.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php
index 41566219b9..036f70e729 100644
--- a/phpBB/viewtopic.php
+++ b/phpBB/viewtopic.php
@@ -1566,7 +1566,7 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i)
'POSTER_ID' => $poster_id,
'S_HAS_ATTACHMENTS' => (!empty($attachments[$row['post_id']])) ? true : false,
- 'S_MULTIPLE_ATTACH' => !empty($attachments[$row['post_id']]) && sizeof($attachments[$row['post_id']]) > 1,
+ 'S_MULTIPLE_ATTACHMENTS' => !empty($attachments[$row['post_id']]) && sizeof($attachments[$row['post_id']]) > 1,
'S_POST_UNAPPROVED' => ($row['post_approved']) ? false : true,
'S_POST_REPORTED' => ($row['post_reported'] && $auth->acl_get('m_report', $forum_id)) ? true : false,
'S_DISPLAY_NOTICE' => $display_notice && $row['post_attachment'],