summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorspiderr <spider@viovio.com>2011-07-05 00:33:13 -0400
committerspiderr <spider@viovio.com>2011-07-05 00:33:13 -0400
commit19b799622a39abc4c5348d247d7cbf42ed3c1f68 (patch)
tree802c4b794a8e7f4dd6bb869494fdc718cd52fe13 /templates
parent6a4f7ecc592d61b0e39ce0b8c7c80f6f25ac6e38 (diff)
downloadliberty-19b799622a39abc4c5348d247d7cbf42ed3c1f68.tar.gz
liberty-19b799622a39abc4c5348d247d7cbf42ed3c1f68.tar.bz2
liberty-19b799622a39abc4c5348d247d7cbf42ed3c1f68.zip
update file_name in mime attachment code
Diffstat (limited to 'templates')
-rw-r--r--templates/mime_meta_inc.tpl4
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/mime_meta_inc.tpl b/templates/mime_meta_inc.tpl
index a8ff434..d0ff071 100644
--- a/templates/mime_meta_inc.tpl
+++ b/templates/mime_meta_inc.tpl
@@ -10,14 +10,14 @@
<div class="row">
{formlabel label="View" for=""}
{forminput}
- <a href="{$attachment.display_url}">{$attachment.filename}</a>
+ <a href="{$attachment.display_url}">{$attachment.file_name}</a>
{/forminput}
</div>
{elseif $attachment.download_url}
<div class="row">
{formlabel label="Download" for=""}
{forminput}
- <a href="{$attachment.download_url}">{$attachment.filename}</a> <small>({$attachment.mime_type} &bull; {$attachment.file_size|display_bytes})</small>
+ <a href="{$attachment.download_url}">{$attachment.file_name}</a> <small>({$attachment.mime_type} &bull; {$attachment.file_size|display_bytes})</small>
{/forminput}
</div>
{/if}