diff options
author | Max Kostikov <max@kostikov.co> | 2019-07-16 18:11:47 +0200 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2019-07-16 18:11:47 +0200 |
commit | 821af482f070bfc671d2f5b6480a370dc86f212e (patch) | |
tree | f5016ee72c8a21e773346aafb6ffce9d1da8cffd /include/activities.php | |
parent | b2d1fadf66fd5fc0d4f5774e8549fd81fbcf5241 (diff) | |
download | volse-hubzilla-821af482f070bfc671d2f5b6480a370dc86f212e.tar.gz volse-hubzilla-821af482f070bfc671d2f5b6480a370dc86f212e.tar.bz2 volse-hubzilla-821af482f070bfc671d2f5b6480a370dc86f212e.zip |
Exclude trailing punctuations from URL
Diffstat (limited to 'include/activities.php')
-rw-r--r-- | include/activities.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/activities.php b/include/activities.php index 68c995338..f329e374c 100644 --- a/include/activities.php +++ b/include/activities.php @@ -51,7 +51,7 @@ function profile_activity($changed, $value) { if($t == 1 && strlen($value)) { // if it's a url, the HTML quotes will mess it up, so link it and don't try and zidify it because we don't know what it points to. - $value = preg_replace_callback("/([^\]\='".'"'."]|^|\#\^)(https?\:\/\/[a-zA-Z0-9\pL\:\/\-\?\&\;\.\=\@\_\~\#\%\$\!\+\,]+)/ismu", 'red_zrl_callback', $value); + $value = preg_replace_callback("/([^\]\='".'"'."]|^|\#\^)(https?\:\/\/[a-zA-Z0-9\pL\:\/\-\?\&\;\.\=\@\_\~\#\%\$\!\+\,]+)([\,\.\:\;]\s|$)/ismu", 'red_zrl_callback', $value); // take out the bookmark indicator if(substr($value,0,2) === '#^') $value = str_replace('#^','',$value); |