diff options
author | friendica <info@friendica.com> | 2014-02-06 16:22:40 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-06 16:22:40 -0800 |
commit | 9b2dc9b87c01f02463997ea4674c364151918f8b (patch) | |
tree | bdec4f58e98da2a79b8e52314ed984f0fc6fd853 /include | |
parent | a46fa1fbaecb5623fb6287ff9fb4479ad2f4f1d1 (diff) | |
download | volse-hubzilla-9b2dc9b87c01f02463997ea4674c364151918f8b.tar.gz volse-hubzilla-9b2dc9b87c01f02463997ea4674c364151918f8b.tar.bz2 volse-hubzilla-9b2dc9b87c01f02463997ea4674c364151918f8b.zip |
make all naked links bookmark-able
Diffstat (limited to 'include')
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 1a26198da..88b258604 100755 --- a/include/items.php +++ b/include/items.php @@ -161,7 +161,7 @@ function red_zrl_callback($matches) { } if($zrl) return $matches[1] . '#^[zrl=' . $matches[2] . ']' . $matches[2] . '[/zrl]'; - return $matches[0]; + return $matches[1] . '#^[url=' . $matches[2] . ']' . $matches[2] . '[/url]'; } |