From dd7a83f22cc6fb41ced6bb4ffd175a87fff2dc0a Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Sat, 12 Feb 2005 01:22:36 +0000 Subject: [PATCH] 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 --- wp-includes/functions.php | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index a464eefc97..ffb25914c6 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -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') ) :