Include class-smtp.php not class.smtp.php. fixes #19677

git-svn-id: https://develop.svn.wordpress.org/trunk@19642 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Ryan Boren 2012-01-02 20:44:04 +00:00
parent 6062dd1da4
commit bd7d650d48

View File

@ -757,7 +757,7 @@ class PHPMailer {
* @return bool
*/
protected function SmtpSend($header, $body) {
require_once $this->PluginDir . 'class.smtp.php';
require_once $this->PluginDir . 'class-smtp.php';
$bad_rcpt = array();
if(!$this->SmtpConnect()) {