mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
Handle links with parens in make_clickable(). Props filosofo. fixes #8300
git-svn-id: http://svn.automattic.com/wordpress/trunk@10562 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
13566f1004
commit
fbba337987
@ -1121,17 +1121,11 @@ function antispambot($emailaddy, $mailto=0) {
|
||||
* @return string HTML A element with URI address.
|
||||
*/
|
||||
function _make_url_clickable_cb($matches) {
|
||||
$ret = '';
|
||||
$url = $matches[2];
|
||||
$url = clean_url($url);
|
||||
if ( empty($url) )
|
||||
return $matches[0];
|
||||
// removed trailing [.,;:] from URL
|
||||
if ( in_array(substr($url, -1), array('.', ',', ';', ':')) === true ) {
|
||||
$ret = substr($url, -1);
|
||||
$url = substr($url, 0, strlen($url)-1);
|
||||
}
|
||||
return $matches[1] . "<a href=\"$url\" rel=\"nofollow\">$url</a>" . $ret;
|
||||
return $matches[1] . "<a href=\"$url\" rel=\"nofollow\">$url</a>";
|
||||
}
|
||||
|
||||
/**
|
||||
@ -1192,7 +1186,7 @@ function _make_email_clickable_cb($matches) {
|
||||
function make_clickable($ret) {
|
||||
$ret = ' ' . $ret;
|
||||
// in testing, using arrays here was found to be faster
|
||||
$ret = preg_replace_callback('#([\s>])([\w]+?://[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]*)#is', '_make_url_clickable_cb', $ret);
|
||||
$ret = preg_replace_callback('#(?<=[\s>])(\()?([\w]+?://(?:[\w\\x80-\\xff\#$%&~/\-=?@\[\](+]|[.,;:](?![\s<])|(?(1)\)(?![\s<])|\)))*)#is', '_make_url_clickable_cb', $ret);
|
||||
$ret = preg_replace_callback('#([\s>])((www|ftp)\.[\w\\x80-\\xff\#$%&~/.\-;:=,?@\[\]+]*)#is', '_make_web_ftp_clickable_cb', $ret);
|
||||
$ret = preg_replace_callback('#([\s>])([.0-9a-z_+-]+)@(([0-9a-z-]+\.)+[0-9a-z]{2,})#i', '_make_email_clickable_cb', $ret);
|
||||
// this one is not in an array because we need it to run last, for cleanup of accidental links within links
|
||||
|
Loading…
Reference in New Issue
Block a user