Skip to content

Commit

Permalink
Get the PRIORITY value correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jan 31, 2015
1 parent e3e8db0 commit a2d09d9
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions framework/Compress/lib/Horde/Compress/Tnef.php
Expand Up @@ -598,8 +598,10 @@ protected function _decodeMessageProperty(&$data)
$properties = $this->_decodeAttribute($data);
$this->_extractMapiAttributes($properties);
break;
case self::APRIORITY:
$this->_geti($data, 32);
case self::APRIOITY:
// Must use geti, not getx for the APRIORITY value.
$this->_geti($data, $this->_geti($data, 32));
$this->_geti($data, 16);
break;
case self::AMESSAGEID:
case self::ASUBJECT:
Expand Down

0 comments on commit a2d09d9

Please sign in to comment.