From: Michael M Slusarz Date: Wed, 22 Dec 2010 05:49:14 +0000 (-0700) Subject: fix camelcase X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=1ba0e43ff5751f153a8c4d4669849fe4d111dbb5;p=horde.git fix camelcase --- 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;