mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2025-10-16 12:05:38 +00:00
We send the charset so we shouldn't need to do character conversion
git-svn-id: https://develop.svn.wordpress.org/trunk@2277 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
686692cfdf
commit
dd7a83f22c
@ -1573,10 +1573,7 @@ function wp_mail($to, $subject, $message, $headers = '', $more = '') {
|
||||
"Content-Type: text/plain; charset=\"" . get_settings('blog_charset') . "\"\n";
|
||||
}
|
||||
|
||||
if ( function_exists('mb_send_mail') )
|
||||
return @mb_send_mail($to, $subject, $message, $headers, $more);
|
||||
else
|
||||
return @mail($to, $subject, $message, $headers, $more);
|
||||
return @mail($to, $subject, $message, $headers, $more);
|
||||
}
|
||||
|
||||
if ( !function_exists('wp_login') ) :
|
||||
|
||||
Loading…
Reference in New Issue
Block a user