diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php index 1a91f9b205..bed4f50616 100644 --- a/wp-includes/formatting.php +++ b/wp-includes/formatting.php @@ -1187,7 +1187,7 @@ function _make_url_clickable_cb($matches) { $url = $matches[2]; $after = ''; - if ( preg_match( '|(.+?)([).]*)$|', $url, $split ) ) { + if ( preg_match( '|(.+?)([).,;:]*)$|', $url, $split ) ) { $url = $split[1]; $after = $split[2]; }