evolution r35671 - trunk/mail



Author: msuman
Date: Sat Jun 21 17:35:34 2008
New Revision: 35671
URL: http://svn.gnome.org/viewvc/evolution?rev=35671&view=rev

Log:
Patch from Paul Bolle  <pebolle tiscali nl>: Fix for bug #538741 (Strip preceding tabs from Date headers too)

Modified:
   trunk/mail/ChangeLog
   trunk/mail/em-format-html.c

Modified: trunk/mail/em-format-html.c
==============================================================================
--- trunk/mail/em-format-html.c	(original)
+++ trunk/mail/em-format-html.c	Sat Jun 21 17:35:34 2008
@@ -1750,7 +1750,7 @@
 		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 */



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]