diff --git a/wp-admin/about.php b/wp-admin/about.php
index 1f387eb9b1..ef81bd3714 100644
--- a/wp-admin/about.php
+++ b/wp-admin/about.php
@@ -41,7 +41,7 @@ include( ABSPATH . 'wp-admin/admin-header.php' );
-
+
diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php
index 987b4af382..f430a5767a 100644
--- a/wp-includes/formatting.php
+++ b/wp-includes/formatting.php
@@ -3159,8 +3159,10 @@ function esc_url( $url, $protocols = null, $_context = 'display' ) {
if ( '' == $url )
return $url;
$url = preg_replace('|[^a-z0-9-~+_.?#=!&;,/:%@$\|*\'()\\x80-\\xff]|i', '', $url);
- $strip = array('%0d', '%0a', '%0D', '%0A');
- $url = _deep_replace($strip, $url);
+ if ( 0 !== stripos( $url, 'mailto:' ) ) {
+ $strip = array('%0d', '%0a', '%0D', '%0A');
+ $url = _deep_replace($strip, $url);
+ }
$url = str_replace(';//', '://', $url);
/* If the URL doesn't appear to contain a scheme, we
* presume it needs http:// appended (unless a relative
diff --git a/wp-includes/version.php b/wp-includes/version.php
index 3bad7925e4..9d7733c2b2 100644
--- a/wp-includes/version.php
+++ b/wp-includes/version.php
@@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
-$wp_version = '4.3-beta1-33062';
+$wp_version = '4.3-beta1-33064';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.