Make WordPress Core

Changeset 15678


Ignore:
Timestamp:
10/01/2010 06:32:47 PM (14 years ago)
Author:
ryan
Message:

Remove wordpressmu_wp_mail_from(). fixes #14586

Location:
trunk/wp-includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/ms-default-filters.php

    r15600 r15678  
    4848
    4949// Mail
    50 add_filter( 'wp_mail_from', 'wordpressmu_wp_mail_from' );
    5150add_action( 'phpmailer_init', 'fix_phpmailer_messageid' );
    5251
  • trunk/wp-includes/ms-functions.php

    r15675 r15678  
    13731373}
    13741374
    1375 function wordpressmu_wp_mail_from( $email ) {
    1376     if ( strpos( $email, 'wordpress@' ) !== false )
    1377         $email = get_option( 'admin_email' );
    1378     return $email;
    1379 }
    1380 
    13811375function signup_nonce_fields() {
    13821376    $id = mt_rand();
Note: See TracChangeset for help on using the changeset viewer.