diff options
author | Friendika <info@friendika.com> | 2011-02-20 20:20:33 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-20 20:20:33 -0800 |
commit | ee35c06a8d138d14f1bf7c0d7fb710721709c3a9 (patch) | |
tree | 697fc479f01b6bfbf989e45366237da600e32ebb /boot.php | |
parent | d609e75b07d6ba0d0867c6bce78b90b7f488923c (diff) | |
download | volse-hubzilla-ee35c06a8d138d14f1bf7c0d7fb710721709c3a9.tar.gz volse-hubzilla-ee35c06a8d138d14f1bf7c0d7fb710721709c3a9.tar.bz2 volse-hubzilla-ee35c06a8d138d14f1bf7c0d7fb710721709c3a9.zip |
more punctuation characters added to linkify patterns
Diffstat (limited to 'boot.php')
-rw-r--r-- | boot.php | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2060,7 +2060,7 @@ function aes_encrypt($val,$ky) if(! function_exists('linkify')) { function linkify($s) { - $s = preg_replace("/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%]*)/", ' <a href="$1" target="external-link">$1</a>', $s); + $s = preg_replace("/(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\.\=\_\~\#\'\%\$\!\+]*)/", ' <a href="$1" target="external-link">$1</a>', $s); return($s); }} |