wp/wp-includes/PHPMailer/Exception.php
changeset 19 3d72ae0968f4
parent 18 be944660c56a
child 22 8c2e4d02f4ef
equal deleted inserted replaced
18:be944660c56a 19:3d72ae0968f4
    33      *
    33      *
    34      * @return string
    34      * @return string
    35      */
    35      */
    36     public function errorMessage()
    36     public function errorMessage()
    37     {
    37     {
    38         return '<strong>' . htmlspecialchars($this->getMessage()) . "</strong><br />\n";
    38         return '<strong>' . htmlspecialchars($this->getMessage(), ENT_COMPAT | ENT_HTML401) . "</strong><br />\n";
    39     }
    39     }
    40 }
    40 }