From dc6a594277cdf5f0393230c316864446a540a999 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Thu, 15 Oct 2015 15:41:08 +0200 Subject: fix label name --- include/text.php | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'include/text.php') diff --git a/include/text.php b/include/text.php index 3173c9eea..fca674099 100644 --- a/include/text.php +++ b/include/text.php @@ -1218,11 +1218,8 @@ function theme_attachments(&$item) { foreach($arr as $r) { $icon = getIconFromType($r['type']); - - $label = urldecode(htmlspecialchars($r['title'], ENT_COMPAT, 'UTF-8')); - if(! $title) - $title = t('unknown.???'); - $title = t('Attachment') . (($r['length']) ? ' ' . userReadableSize($r['length']) : ''); + $label = (($r['title'] == '') ? urldecode(htmlspecialchars($r['title'], ENT_COMPAT, 'UTF-8')) : t('Unknown Attachment')); + $title = t('Attachment') . ' - ' . (($r['length']) ? userReadableSize($r['length']) : t('Size Unknown')); require_once('include/identity.php'); if(is_foreigner($item['author_xchan'])) -- cgit v1.2.3