Use GMT tz when setting birthday (fixes #3579)

This commit is contained in:
Ludovic Marcotte
2016-03-13 13:44:42 -04:00
parent 5a7652de87
commit 85cacd97de
+1 -1
View File
@@ -818,7 +818,7 @@ convention:
value = [bday stringByReplacingString: @"-" withString: @""];
date = [NSCalendarDate dateFromShortDateString: value
andShortTimeString: nil
inTimeZone: nil];
inTimeZone: [NSTimeZone timeZoneWithName: @"GMT"]];
}
return date;