Skip to content

Commit

Permalink
Fix constant scope.
Browse files Browse the repository at this point in the history
These *should* be here, but can't move them until we can break BC.
  • Loading branch information
mrubinsk committed Jan 21, 2015
1 parent 5830e1c commit 2c21ae9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions framework/Compress/lib/Horde/Compress/Tnef/Icalendar.php
Expand Up @@ -349,11 +349,11 @@ protected function _toItip()
// METHOD
if ($this->_type) {
switch ($this->_type) {
case self::MAPI_MEETING_INITIAL:
case self::MAPI_MEETING_FULL_UPDATE:
case Horde_Compress_Tnef::MAPI_MEETING_INITIAL:
case Horde_Compress_Tnef::MAPI_MEETING_FULL_UPDATE:
$this->_method = 'REQUEST';
break;
case self::MAPI_MEETING_INFO:
case Horde_Compress_Tnef::MAPI_MEETING_INFO:
$this->_method = 'PUBLISH';
break;
}
Expand Down

0 comments on commit 2c21ae9

Please sign in to comment.