aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorrubencm <rubencm@gmail.com>2019-06-25 15:59:12 +0000
committerrubencm <rubencm@gmail.com>2019-06-25 15:59:12 +0000
commit6876fcb46a23159473b3ae2ac4cca4426a8b3728 (patch)
treea4af6c0c74b31b399ad21b4c6582301da7441215 /phpBB
parent621747c7bc9b0105a96f6ea6e254fb6f51101c80 (diff)
downloadforums-6876fcb46a23159473b3ae2ac4cca4426a8b3728.tar
forums-6876fcb46a23159473b3ae2ac4cca4426a8b3728.tar.gz
forums-6876fcb46a23159473b3ae2ac4cca4426a8b3728.tar.bz2
forums-6876fcb46a23159473b3ae2ac4cca4426a8b3728.tar.xz
forums-6876fcb46a23159473b3ae2ac4cca4426a8b3728.zip
[ticket/14459] Remove unused variables
PHPBB3-14459
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/acp/acp_attachments.php4
1 files changed, 0 insertions, 4 deletions
diff --git a/phpBB/includes/acp/acp_attachments.php b/phpBB/includes/acp/acp_attachments.php
index 72cb639185..48db954891 100644
--- a/phpBB/includes/acp/acp_attachments.php
+++ b/phpBB/includes/acp/acp_attachments.php
@@ -1249,14 +1249,10 @@ class acp_attachments
'FILESIZE' => get_formatted_filesize((int) $row['filesize']),
'FILETIME' => $user->format_date((int) $row['filetime']),
'REAL_FILENAME' => utf8_basename((string) $row['real_filename']),
- 'PHYSICAL_FILENAME' => utf8_basename((string) $row['physical_filename']),
'EXT_GROUP_NAME' => $this->lang->is_set('EXT_GROUP_' . $extensions[$row['extension']]['group_name']) ? $this->lang->lang('EXT_GROUP_' . $extensions[$row['extension']]['group_name']) : $extensions[$row['extension']]['group_name'],
'COMMENT' => $comment,
'TOPIC_TITLE' => (!$row['in_message']) ? (string) $row['topic_title'] : '',
'ATTACH_ID' => (int) $row['attach_id'],
- 'POST_ID' => (int) $row['post_msg_id'],
- 'TOPIC_ID' => (int) $row['topic_id'],
- 'POST_IDS' => (!empty($post_ids[$row['attach_id']])) ? (int) $post_ids[$row['attach_id']] : '',
'L_DOWNLOAD_COUNT' => $user->lang($l_downloaded_viewed, (int) $row['download_count']),