diff options
author | Michael Miday <midaym@gmail.com> | 2015-09-15 22:43:42 +0200 |
---|---|---|
committer | Michael Miday <midaym@gmail.com> | 2015-09-17 18:37:25 +0200 |
commit | 5988e3a192ac7ce8e647bfdf35e60304e6dd566c (patch) | |
tree | 6331f71f423c73dcadd3bf6cc52330e617ca7ace /phpBB/viewtopic.php | |
parent | 956723af0ed94f79dbbeed2bcfc8617b2c73960e (diff) | |
download | forums-5988e3a192ac7ce8e647bfdf35e60304e6dd566c.tar forums-5988e3a192ac7ce8e647bfdf35e60304e6dd566c.tar.gz forums-5988e3a192ac7ce8e647bfdf35e60304e6dd566c.tar.bz2 forums-5988e3a192ac7ce8e647bfdf35e60304e6dd566c.tar.xz forums-5988e3a192ac7ce8e647bfdf35e60304e6dd566c.zip |
[ticket/12769] Delete imageset & consolidate imgs
Diffstat (limited to 'phpBB/viewtopic.php')
-rw-r--r-- | phpBB/viewtopic.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/phpBB/viewtopic.php b/phpBB/viewtopic.php index b9cb226920..2908265a97 100644 --- a/phpBB/viewtopic.php +++ b/phpBB/viewtopic.php @@ -1912,6 +1912,8 @@ for ($i = 0, $end = sizeof($post_list); $i < $end; ++$i) 'POST_ID' => $row['post_id'], 'POST_NUMBER' => $i + $start + 1, 'POSTER_ID' => $poster_id, + 'MINI_POST' => ($post_unread) ? $user->lang['UNREAD_POST'] : $user->lang['POST'], + 'S_HAS_ATTACHMENTS' => (!empty($attachments[$row['post_id']])) ? true : false, 'S_MULTIPLE_ATTACHMENTS' => !empty($attachments[$row['post_id']]) && sizeof($attachments[$row['post_id']]) > 1, |