Fix some typos; MIME->Mime conversions
authorMichael M Slusarz <slusarz@curecanti.org>
Mon, 10 Nov 2008 18:55:10 +0000 (11:55 -0700)
committerMichael M Slusarz <slusarz@curecanti.org>
Mon, 10 Nov 2008 18:55:10 +0000 (11:55 -0700)
framework/Mime/lib/Horde/Mime/Part.php
framework/Mime/lib/Horde/Mime/Viewer/Driver.php

index be72bb2..c5ce002 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 
 require_once 'Horde/String.php';
-require_once dirname(__FILE__) . '/../MIME.php';
+require_once dirname(__FILE__) . '/../Mime.php';
 
 /**
  * The Horde_Mime_Part:: class provides a wrapper around MIME parts and
index f12bc56..fe70349 100644 (file)
@@ -111,7 +111,7 @@ class Horde_MIME_Viewer_Driver
     public function renderInline()
     {
         return (is_null($this->_mimepart) || !$this->canDisplayInline())
-            ? array('data' => '', 'status' => array()),
+            ? array('data' => '', 'status' => array())
             : $this->_renderInline();
     }
 
@@ -132,7 +132,7 @@ class Horde_MIME_Viewer_Driver
     public function renderInfo()
     {
         return (is_null($this->_mimepart) || !$this->canDisplayInfo())
-            ? array('data' => '', 'status' => array()),
+            ? array('data' => '', 'status' => array())
             : $this->_renderInfo();
     }