From 0ae20f6b9c068407dd15ab63d8d8771f0ccbe066 Mon Sep 17 00:00:00 2001
From: Aleksander Machniak <alec@alec.pl>
Date: Tue, 05 Mar 2013 10:51:05 -0500
Subject: [PATCH] Fix so full filename is used for title attribute
---
program/steps/mail/show.inc | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/program/steps/mail/show.inc b/program/steps/mail/show.inc
index 3495df9..437dbaa 100644
--- a/program/steps/mail/show.inc
+++ b/program/steps/mail/show.inc
@@ -158,8 +158,8 @@
}
else {
if (mb_strlen($filename) > 50) {
+ $title = $filename;
$filename = abbreviate_string($filename, 50);
- $title = $filename;
}
else {
$title = '';
--
Gitblit v1.9.1