Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #22837


Ignore:
Timestamp:
12/09/2012 07:52:57 PM (12 years ago)
Author:
scribu
Comment:

Note that functions in pluggable.php are called pluggable because you can re-define them in a plugin, so that you don't have to hack Core.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #22837

    • Property Severity changed from critical to normal
  • Ticket #22837 – Description

    initial v1  
    55Right now i have to manually modify the /wp-includes/pluggable.php file in the wp_mail() function to include:
    66
     7{{{
    78        if (strlen($phpmailer->Sender)==0)
    89        {
     
    1011                $phpmailer->AddReplyTo($phpmailer->From);
    1112        }
     13}}}
    1214
    1315This resolves the problem and DKIM works again.