Skip to content

Commit

Permalink
Bug: 13199 Fix reveresed logic.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed May 24, 2014
1 parent e41023e commit 39829e9
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 @@ -509,7 +509,7 @@ protected function _sniffMultiplex()
// non-multiplexed calendars only.
if (!empty($this->properties[self::OS]) &&
preg_match('/(\d+\.\d+\.\d+)/', $this->properties[self::OS], $matches) &&
version_compare($matches[0], '4.4.0') < 1) {
version_compare($matches[0], '4.4.0') >= 0) {

$this->_properties['properties'][self::MULTIPLEX] =
Horde_ActiveSync_Device::MULTIPLEX_NOTES |
Expand Down

0 comments on commit 39829e9

Please sign in to comment.