From 1ba0e43ff5751f153a8c4d4669849fe4d111dbb5 Mon Sep 17 00:00:00 2001 From: Michael M Slusarz Date: Tue, 21 Dec 2010 22:49:14 -0700 Subject: [PATCH] fix camelcase --- imp/compose.php | 2 +- imp/lib/Compose.php | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/imp/compose.php b/imp/compose.php index 68f99ae98..c3f674c2d 100644 --- a/imp/compose.php +++ b/imp/compose.php @@ -520,7 +520,7 @@ case 'selectlist_process': $part->setName(reset($val)); $part->setContents($data); try { - $imp_compose->addMIMEPartAttachment($part); + $imp_compose->addMimePartAttachment($part); } catch (IMP_Compose_Exception $e) { $notification->push($e); } diff --git a/imp/lib/Compose.php b/imp/lib/Compose.php index 065a11dfa..172b19878 100644 --- a/imp/lib/Compose.php +++ b/imp/lib/Compose.php @@ -1824,7 +1824,7 @@ class IMP_Compose implements ArrayAccess, Countable, Iterator $part->setContents($contents->fullMessageText(array('stream' => true))); // Throws IMP_Compose_Exception. - $this->addMIMEPartAttachment($part); + $this->addMimePartAttachment($part); } if ($attached == 1) { @@ -1963,7 +1963,7 @@ class IMP_Compose implements ArrayAccess, Countable, Iterator * * @throws IMP_Compose_Exception */ - public function addMIMEPartAttachment($part) + public function addMimePartAttachment($part) { global $conf; -- 2.11.0