From bd7d650d4870b0361fa2ee4f2d73d66d278dc9ee Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Mon, 2 Jan 2012 20:44:04 +0000 Subject: [PATCH] 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 --- wp-includes/class-phpmailer.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/class-phpmailer.php b/wp-includes/class-phpmailer.php index 4589cd791e..21a0d0c302 100644 --- a/wp-includes/class-phpmailer.php +++ b/wp-includes/class-phpmailer.php @@ -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()) {