Changeset 4947

Show
Ignore:
Timestamp:
02/26/07 03:42:25 (2 years ago)
Author:
ryan
Message:

Remove debug.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/pluggable.php

    r4946 r4947  
    158158function wp_mail($to, $subject, $message, $headers = '') { 
    159159    global $phpmailer; 
    160     error_log("mailing $subject\n", 0); 
     160 
    161161    if ( !is_object( $phpmailer ) ) { 
    162162        require_once(ABSPATH . WPINC . '/class-phpmailer.php'); 
     
    214214 
    215215    $result = @$phpmailer->Send(); 
    216     error_log("mailing result $result\n", 0); 
     216 
    217217    return $result; 
    218218}