Skip to content

Commit

Permalink
We are checking the Start element here, not the content element.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Feb 4, 2016
1 parent a1f6e8e commit 649db67
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/ActiveSync/lib/Horde/ActiveSync/Request/Sync.php
Expand Up @@ -805,7 +805,7 @@ protected function _parseSyncFolders()
}
while (1) {
$el = $this->_decoder->getElement();
if ($this->_decoder->isEmptyElement($el)) {
if ($this->_decoder->isEmptyElement($this->_decoder->getLastStartElement())) {
// MS-ASCMD 2.2.3.168 An empty SUPPORTED tag
// indicates that ALL elements able to be ghosted
// ARE ghosted.
Expand Down

0 comments on commit 649db67

Please sign in to comment.