diff options
author | zotlabs <mike@macgirvin.com> | 2017-11-09 21:26:18 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-11-09 21:26:18 -0800 |
commit | 9b19e40a74a4a5d641015c04c1765d4bd4502bd1 (patch) | |
tree | 2352619895cfdad2609f9dfaefbe3ad657e9acd9 /include/bbcode.php | |
parent | 766a7fb1b46a506e92d62ed0b76e0e0e3e6958a5 (diff) | |
download | volse-hubzilla-9b19e40a74a4a5d641015c04c1765d4bd4502bd1.tar.gz volse-hubzilla-9b19e40a74a4a5d641015c04c1765d4bd4502bd1.tar.bz2 volse-hubzilla-9b19e40a74a4a5d641015c04c1765d4bd4502bd1.zip |
hubzilla issue #901 - unicode characters in urls tripping up url regexes - these regexes have been modified to accept unicode "letters" which may preclude emojis and control sequences and symbols in url links; but should suffice for most legal URLs containing language context "text" glyphs.
Diffstat (limited to 'include/bbcode.php')
-rw-r--r-- | include/bbcode.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/bbcode.php b/include/bbcode.php index 9a2a6eb9b..050ab2d29 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -838,13 +838,13 @@ function bbcode($Text, $preserve_nl = false, $tryoembed = true, $cache = false) // Perform URL Search - $urlchars = '[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,\@\(\)]'; + $urlchars = '[a-zA-Z0-9\pL\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,\@\(\)]'; if (strpos($Text,'http') !== false) { if($tryoembed) { - $Text = preg_replace_callback("/([^\]\='".'"'."\/]|^|\#\^)(https?\:\/\/$urlchars+)/ism", 'tryoembed', $Text); + $Text = preg_replace_callback("/([^\]\='".'"'."\/]|^|\#\^)(https?\:\/\/$urlchars+)/ismu", 'tryoembed', $Text); } - $Text = preg_replace("/([^\]\='".'"'."\/]|^|\#\^)(https?\:\/\/$urlchars+)/ism", '$1<a href="$2" target="_blank" rel="nofollow noopener">$2</a>', $Text); + $Text = preg_replace("/([^\]\='".'"'."\/]|^|\#\^)(https?\:\/\/$urlchars+)/ismu", '$1<a href="$2" target="_blank" rel="nofollow noopener">$2</a>', $Text); } if (strpos($Text,'[/share]') !== false) { |