Skip to content

Commit

Permalink
Fix broken TAG_PICTURE parsing.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jan 13, 2019
1 parent 2123952 commit bd76bdc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/Horde/ActiveSync/Request/ResolveRecipients.php
Expand Up @@ -106,7 +106,8 @@ protected function _handle()
($this->_decoder->getElementStartTag(self::TAG_MAXCERTIFICATES) ? self::TAG_MAXCERTIFICATES :
($this->_decoder->getElementStartTag(self::TAG_MAXAMBIGUOUSRECIPIENTS) ? self::TAG_MAXAMBIGUOUSRECIPIENTS :
($this->_decoder->getElementStartTag(self::TAG_AVAILABILITY) ? self::TAG_AVAILABILITY :
-1))))) != -1) {
($this->_decoder->getElementStartTag(self::TAG_PICTURE) ? self::TAG_PICTURE :
-1)))))) != -1) {

if ($option == self::TAG_AVAILABILITY) {
$options[self::TAG_AVAILABILITY] = true;
Expand Down

0 comments on commit bd76bdc

Please sign in to comment.