Fixed 1174: schemeless URL auto-linking bug

This commit is contained in:
Sean Murphy 2009-02-10 17:42:58 -05:00
parent d8ed013612
commit 646fdea1bf
1 changed files with 2 additions and 2 deletions

View File

@ -418,8 +418,8 @@ function common_replace_urls_callback($text, $callback) {
// Make sure we didn't pick up an email address
if (preg_match('#^[A-Z0-9._%+-]+@[A-Z0-9.-]+\.[A-Z]{2,4}$#i', $url)) continue;
// Remove trailing punctuation
$url = rtrim($url, '.?!,;:\'"`');
// Remove surrounding punctuation
$url = trim($url, '.?!,;:\'"`([<');
// Remove surrounding parens and the like
preg_match('/[)\]>]+$/', $url, $trailing);