diff options
author | Suman Manjunath <msuman@src.gnome.org> | 2008-06-22 01:35:34 +0800 |
---|---|---|
committer | Suman Manjunath <msuman@src.gnome.org> | 2008-06-22 01:35:34 +0800 |
commit | 7e2c873b8db2f0e21ba4c7cb8d1d679b50a2959f (patch) | |
tree | 07c3fe048a484b48d93c9e8d5b5047b8647cf7e2 /mail/em-format-html.c | |
parent | 77f71cf54a87b9197c8b4986efd7886a50f2f457 (diff) | |
download | gsoc2013-evolution-7e2c873b8db2f0e21ba4c7cb8d1d679b50a2959f.tar.gz gsoc2013-evolution-7e2c873b8db2f0e21ba4c7cb8d1d679b50a2959f.tar.zst gsoc2013-evolution-7e2c873b8db2f0e21ba4c7cb8d1d679b50a2959f.zip |
Patch from Paul Bolle <pebolle@tiscali.nl>: Fix for bug #538741 (Strip preceding tabs from Date headers too)
svn path=/trunk/; revision=35671
Diffstat (limited to 'mail/em-format-html.c')
-rw-r--r-- | mail/em-format-html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/em-format-html.c b/mail/em-format-html.c index 8b3e788140..5c76c5e861 100644 --- a/mail/em-format-html.c +++ b/mail/em-format-html.c @@ -1750,7 +1750,7 @@ efh_format_header(EMFormat *emf, CamelStream *stream, CamelMedium *part, struct struct tm local; txt = header->value; - while (*txt == ' ') + while (*txt == ' ' || *txt == '\t') txt++; /* Show the local timezone equivalent in brackets if the sender is remote */ |