aboutsummaryrefslogtreecommitdiffstats
path: root/boot.php
diff options
context:
space:
mode:
authorFriendika <info@friendika.com>2011-02-20 20:20:33 -0800
committerFriendika <info@friendika.com>2011-02-20 20:20:33 -0800
commitee35c06a8d138d14f1bf7c0d7fb710721709c3a9 (patch)
tree697fc479f01b6bfbf989e45366237da600e32ebb /boot.php
parentd609e75b07d6ba0d0867c6bce78b90b7f488923c (diff)
downloadvolse-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.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/boot.php b/boot.php
index 0b6aed2e7..d8abf06b0 100644
--- a/boot.php
+++ b/boot.php
@@ -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);
}}