From 75f0a738891b88650bb4f22de5b5e5346bb0b668 Mon Sep 17 00:00:00 2001 From: till <till@php.net> Date: Wed, 13 Feb 2008 00:13:19 -0500 Subject: [PATCH] * fixing mimetype issue from #1484062 --- program/steps/mail/sendmail.inc | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/program/steps/mail/sendmail.inc b/program/steps/mail/sendmail.inc index a686e12..5a15a83 100644 --- a/program/steps/mail/sendmail.inc +++ b/program/steps/mail/sendmail.inc @@ -266,7 +266,11 @@ } else { - $MAIL_MIME->addAttachment($attachment['path'], $attachment['mimetype'], $attachment['name'], true, 'base64', 'attachment', $message_charset); + /* + We need to replace mime_content_type in a later release because the function + is deprecated in favour of File_Info + */ + $MAIL_MIME->addAttachment($attachment['path'], mime_content_type($attachment['path']), $attachment['name'], true, 'base64', 'attachment', $message_charset); } } -- Gitblit v1.9.1