Use GMT tz when setting birthday (fixes #3579)

This commit is contained in:
Ludovic Marcotte
2016-03-13 13:44:42 -04:00
parent 3a66e54bd0
commit 20b1d3c0e9

View File

@@ -789,7 +789,7 @@ convention:
value = [bday stringByReplacingString: @"-" withString: @""];
date = [NSCalendarDate dateFromShortDateString: value
andShortTimeString: nil
inTimeZone: nil];
inTimeZone: [NSTimeZone timeZoneWithName: @"GMT"]];
}
return date;