Skip to content

Commit

Permalink
Fix normalizing birthdays for "Nine".
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed May 11, 2016
1 parent c56e86c commit 5997607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/ActiveSync/lib/Horde/ActiveSync/Device.php
Expand Up @@ -632,7 +632,7 @@ public function normalizePoomContactsDates($date, $toEas = false)

case self::TYPE_NINE:
if ($toEas) {
return new Horde_Date($date->format('Y-m-d 00:00:00'));
return new Horde_Date($date->format('Y-m-d 00:00:00'), 'UTC');
} else {
return $date;
}
Expand Down

0 comments on commit 5997607

Please sign in to comment.