Skip to content

Commit

Permalink
Fix method visibility/name
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Dec 31, 2013
1 parent 4a1f064 commit 720aba3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions framework/Compress/lib/Horde/Compress/Tnef.php
Expand Up @@ -363,7 +363,7 @@ protected function _extractMapiAttributes($data, &$attachment_data)
$this->_lastModifier = $value;
break;
case self::MAPI_ENTRY_UID:
$attachment_data[0]['uid'] = self::getUidFromGoid(bin2hex($value));
$attachment_data[0]['uid'] = $this->_getUidFromGoid(bin2hex($value));
break;
case self::MAPI_APPOINTMENT_RECUR:
// Need to decode this to fully support recurring meeting
Expand Down Expand Up @@ -630,7 +630,7 @@ protected function _win642Unix($bci)
*
* @return string The UID
*/
static public function getUidFromGoid($goid)
protected function _getUidFromGoid($goid)
{
$goid = base64_decode($goid);

Expand Down

0 comments on commit 720aba3

Please sign in to comment.