From 1372b482df96589cf1951c5f16d55562df606b6a Mon Sep 17 00:00:00 2001 From: moodler Date: Fri, 10 Dec 2004 12:22:39 +0000 Subject: [PATCH] Fixed the include to use PluginDir --- lib/phpmailer/class.phpmailer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/phpmailer/class.phpmailer.php b/lib/phpmailer/class.phpmailer.php index d76defcccf..b315c178cd 100644 --- a/lib/phpmailer/class.phpmailer.php +++ b/lib/phpmailer/class.phpmailer.php @@ -471,7 +471,7 @@ class PHPMailer * @return bool */ function SmtpSend($header, $body) { - include_once("class.smtp.php"); + include_once($this->PluginDir.'class.smtp.php'); $error = ""; $bad_rcpt = array(); -- 2.39.5