Make WordPress Core

Ticket #20970: 20970.patch

File 20970.patch, 1.2 KB (added by SergeyBiryukov, 12 years ago)
  • wp-includes/class-phpmailer.php

     
    760760    } else {
    761761      if ($this->SingleTo === true && count($toArr) > 1) {
    762762        foreach ($toArr as $key => $val) {
    763           $rt = @mail($val, $this->EncodeHeader($this->SecureHeader($this->Subject)), $body, $header, $params);
     763          $rt = @mail($val, $this->EncodeHeader($this->SecureHeader($this->Subject)), $body, $header);
    764764          // implement call back function if it exists
    765765          $isSent = ($rt == 1) ? 1 : 0;
    766766          $this->doCallback($isSent, $val, $this->cc, $this->bcc, $this->Subject, $body);
    767767        }
    768768      } else {
    769         $rt = @mail($to, $this->EncodeHeader($this->SecureHeader($this->Subject)), $body, $header, $params);
     769        $rt = @mail($to, $this->EncodeHeader($this->SecureHeader($this->Subject)), $body, $header);
    770770        // implement call back function if it exists
    771771        $isSent = ($rt == 1) ? 1 : 0;
    772772        $this->doCallback($isSent, $to, $this->cc, $this->bcc, $this->Subject, $body);