[evolution] Do not decode the date as its already in local timezone.



commit 1cee53b02594d1c407a8158f270793517b51d17f
Author: Chenthill Palanisamy <pchenthill novell com>
Date:   Tue Jul 14 13:34:52 2009 +0530

    Do not decode the date as its already in local timezone.

 plugins/groupwise-features/status-track.c |    4 +---
 1 files changed, 1 insertions(+), 3 deletions(-)
---
diff --git a/plugins/groupwise-features/status-track.c b/plugins/groupwise-features/status-track.c
index d1f8fab..5507568 100644
--- a/plugins/groupwise-features/status-track.c
+++ b/plugins/groupwise-features/status-track.c
@@ -48,12 +48,10 @@ static gchar *
 format_date (const gchar * value)
 {
 	time_t time;
-	time_t actual_time;
 	gchar *str;
 
 	time = e_gw_connection_get_date_from_string (value);
-	actual_time = camel_header_decode_date (ctime(&time), NULL);
-	str = ctime (&actual_time);
+	str = ctime (&time);
 
 	str [strlen(str)-1] = '\0';
 	return str;



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