Skip to content

Commit

Permalink
Fix comparison. This is needed for >= 14.1 not just == 14.1
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jan 21, 2016
1 parent 489dcd6 commit e32d3b9
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -125,7 +125,7 @@ public function __construct(array $options = array())
'calendartype' => false,
'isleapmonth' => false);
}
if ($this->_version == Horde_ActiveSync::VERSION_FOURTEENONE) {
if ($this->_version >= Horde_ActiveSync::VERSION_FOURTEENONE) {
$this->_mapping += array(
Horde_ActiveSync_Message_Appointment::POOMCAL_FIRSTDAYOFWEEK => array(self::KEY_ATTRIBUTE => 'firstdayofweek')
);
Expand Down

0 comments on commit e32d3b9

Please sign in to comment.