From 2c21ae9e5161b672bc6a4e294b24a58856acf611 Mon Sep 17 00:00:00 2001 From: Michael J Rubinsky Date: Wed, 21 Jan 2015 11:07:35 -0500 Subject: [PATCH] Fix constant scope. These *should* be here, but can't move them until we can break BC. --- framework/Compress/lib/Horde/Compress/Tnef/Icalendar.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/framework/Compress/lib/Horde/Compress/Tnef/Icalendar.php b/framework/Compress/lib/Horde/Compress/Tnef/Icalendar.php index 0e14f9a1d42..42c1033e447 100644 --- a/framework/Compress/lib/Horde/Compress/Tnef/Icalendar.php +++ b/framework/Compress/lib/Horde/Compress/Tnef/Icalendar.php @@ -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; }