Make WordPress Core

Changeset 2515


Ignore:
Timestamp:
04/04/2005 10:36:09 PM (20 years ago)
Author:
ryan
Message:

Make wp_mail() replaceable. http://mosquito.wordpress.org/view.php?id=1210

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/functions.php

    r2509 r2515  
    17951795}
    17961796
    1797 
     1797if ( !function_exists('wp_mail') ) :
    17981798function wp_mail($to, $subject, $message, $headers = '') {
    17991799    if( $headers == '' ) {
     
    18051805    return @mail($to, $subject, $message, $headers);
    18061806}
     1807endif;
    18071808
    18081809if ( !function_exists('wp_login') ) :
Note: See TracChangeset for help on using the changeset viewer.