From 95b18b3e3e1c0540b243bbacfa65ee7fb5047114 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20M=C3=BCller?= Date: Thu, 31 Jul 2014 17:12:04 +0200 Subject: [PATCH] Horde_Mime_Mail: using getBasePart() instead of _getBasePart in method getRaw() --- framework/Mime/lib/Horde/Mime/Mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/Mime/lib/Horde/Mime/Mail.php b/framework/Mime/lib/Horde/Mime/Mail.php index ccd07ae28d5..35783f65dc6 100644 --- a/framework/Mime/lib/Horde/Mime/Mail.php +++ b/framework/Mime/lib/Horde/Mime/Mail.php @@ -484,7 +484,7 @@ public function getRaw($stream = true) ); } - return $this->_headers->toString() . $this->_getBasePart->toString(); + return $this->_headers->toString() . $this->getBasePart()->toString(); } /**