wp-includes pluggable.php

This file also contains only 1 is_a

function wp_mail( $to, $subject, $message, $headers = '', $attachments = array() ) {
.....
//	if ( !is_object( $phpmailer ) || !is_a( $phpmailer, 'PHPMailer' ) ) {
	$class_name = 'PHPMailer';
	if ( !is_object( $phpmailer )
	 || ( ( get_class($phpmailer) != $class_name )
	 && !is_subclass_of($phpmailer, $class_name) ) ) {
Technorati Tags: ,

Post a Comment

Your email is never shared. Required fields are marked *

*
*