Skip to content

Commit

Permalink
This is a non-public method.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Jun 7, 2016
1 parent 6336d36 commit 0ee82ac
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/ActiveSync/lib/Horde/ActiveSync/Message/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ public function decodeStream(Horde_ActiveSync_Wbxml_Decoder &$decoder)
if ($map[self::KEY_TYPE] == self::TYPE_DATE || $map[self::KEY_TYPE] == self::TYPE_DATE_DASHES) {
$decoded = $this->_parseDate($decoder->getElementContent());
} elseif ($map[self::KEY_TYPE] == self::TYPE_HEX) {
$decoded = self::hex2bin($decoder->getElementContent());
$decoded = self::_hex2bin($decoder->getElementContent());
} else {
$class = $map[self::KEY_TYPE];
$subdecoder = new $class(array(
Expand Down Expand Up @@ -674,7 +674,7 @@ protected function _parseDate($ts)
*
* @return string The binary data
*/
private static function hex2bin($data)
private static function _hex2bin($data)
{
$len = strlen($data);
$newdata = '';
Expand Down

0 comments on commit 0ee82ac

Please sign in to comment.