diff options
author | Matt Friedman <maf675@gmail.com> | 2014-04-26 09:15:22 -0700 |
---|---|---|
committer | Matt Friedman <maf675@gmail.com> | 2014-04-26 09:15:22 -0700 |
commit | f5262eb92885e76eb6ebd09265882426f4b11b31 (patch) | |
tree | c7fe2c929317e36aae53dc85b40c79999f60a1c2 /phpBB/includes/acp/acp_attachments.php | |
parent | 3bebbc05ee2e762e8ec598e898e7930a55621fb7 (diff) | |
download | forums-f5262eb92885e76eb6ebd09265882426f4b11b31.tar forums-f5262eb92885e76eb6ebd09265882426f4b11b31.tar.gz forums-f5262eb92885e76eb6ebd09265882426f4b11b31.tar.bz2 forums-f5262eb92885e76eb6ebd09265882426f4b11b31.tar.xz forums-f5262eb92885e76eb6ebd09265882426f4b11b31.zip |
[ticket/12332] Accomplish all word creaking in template and CSS
PHPBB3-12332
Diffstat (limited to 'phpBB/includes/acp/acp_attachments.php')
-rw-r--r-- | phpBB/includes/acp/acp_attachments.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/acp/acp_attachments.php b/phpBB/includes/acp/acp_attachments.php index 8eef2da24b..51c80d0385 100644 --- a/phpBB/includes/acp/acp_attachments.php +++ b/phpBB/includes/acp/acp_attachments.php @@ -1058,7 +1058,7 @@ class acp_attachments $template->assign_block_vars('orphan', array( 'FILESIZE' => get_formatted_filesize($row['filesize']), 'FILETIME' => $user->format_date($row['filetime']), - 'REAL_FILENAME' => utf8_wordwrap(utf8_basename((string) $row['real_filename']), 40, '<br />', true), + 'REAL_FILENAME' => utf8_basename((string) $row['real_filename']), 'PHYSICAL_FILENAME' => utf8_basename($row['physical_filename']), 'ATTACH_ID' => $row['attach_id'], 'POST_IDS' => (!empty($post_ids[$row['attach_id']])) ? $post_ids[$row['attach_id']] : '', @@ -1223,7 +1223,7 @@ class acp_attachments 'ATTACHMENT_POSTER' => get_username_string('full', (int) $row['poster_id'], (string) $row['username'], (string) $row['user_colour'], (string) $row['username']), 'FILESIZE' => get_formatted_filesize((int) $row['filesize']), 'FILETIME' => $user->format_date((int) $row['filetime']), - 'REAL_FILENAME' => (!$row['in_message']) ? utf8_wordwrap(utf8_basename((string) $row['real_filename']), 40, '<br />', true) : '', + 'REAL_FILENAME' => (!$row['in_message']) ? utf8_basename((string) $row['real_filename']) : '', 'PHYSICAL_FILENAME' => utf8_basename((string) $row['physical_filename']), 'EXT_GROUP_NAME' => (!empty($extensions[$row['extension']]['group_name'])) ? $user->lang['EXT_GROUP_' . $extensions[$row['extension']]['group_name']] : '', 'COMMENT' => $comment, |