From: Michael M Slusarz Date: Tue, 3 Mar 2009 20:50:55 +0000 (-0700) Subject: Fix library name/location X-Git-Url: https://git.internetallee.de/?a=commitdiff_plain;h=daef388dce425fab09936356fcb62971d38e85f3;p=horde.git Fix library name/location --- diff --git a/framework/Imap_Client/test/Horde/Imap/test_client.php b/framework/Imap_Client/test/Horde/Imap/test_client.php index 1a8a5cb68..501488c33 100644 --- a/framework/Imap_Client/test/Horde/Imap/test_client.php +++ b/framework/Imap_Client/test/Horde/Imap/test_client.php @@ -883,13 +883,13 @@ foreach ($imap_urls as $val) { } if (isset($fetch_res) && - @require_once 'Horde/MIME/Message.php') { - print "\nTesting MIME_Message::parseStructure() on complex MIME message:\n"; - $parse_res = MIME_Message::parseStructure($fetch_res[$uid3]['structure']); + @require_once 'Horde/Mime/Part.php') { + print "\nTesting Horde_Mime_Part::parseStructure() on complex MIME message:\n"; + $parse_res = Horde_Mime_Part::parseStructure($fetch_res[$uid3]['structure']); print_r($parse_res); - print "\nTesting MIME_Message::parseMessage() on complex MIME message:\n"; - $parse_text_res = MIME_Message::parseMessage(file_get_contents($currdir . '/test_email2.txt')); + print "\nTesting Horde_Mime_Part::parseMessage() on complex MIME message:\n"; + $parse_text_res = Horde_Mime_Part::parseMessage(file_get_contents($currdir . '/test_email2.txt')); print_r($parse_text_res); }