fix camelcase
authorMichael M Slusarz <slusarz@curecanti.org>
Wed, 22 Dec 2010 05:49:14 +0000 (22:49 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Wed, 22 Dec 2010 05:49:14 +0000 (22:49 -0700)
imp/compose.php
imp/lib/Compose.php

index 68f99ae..c3f674c 100644 (file)
@@ -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);
                         }
index 065a11d..172b198 100644 (file)
@@ -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;