diff options
author | friendica <info@friendica.com> | 2014-02-04 19:39:56 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-04 19:39:56 -0800 |
commit | 8a11c2941395bdd325ac076bd22ad011fe41f3c7 (patch) | |
tree | a316119717113bea8af19c588637ca785bdc4f7d /include/text.php | |
parent | 9f439c3248c0464298e0b486a85ad74ec2df8270 (diff) | |
download | volse-hubzilla-8a11c2941395bdd325ac076bd22ad011fe41f3c7.tar.gz volse-hubzilla-8a11c2941395bdd325ac076bd22ad011fe41f3c7.tar.bz2 volse-hubzilla-8a11c2941395bdd325ac076bd22ad011fe41f3c7.zip |
make links in comments bookmark-able
Diffstat (limited to 'include/text.php')
-rwxr-xr-x | include/text.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/text.php b/include/text.php index dc7d94b6d..266d8952b 100755 --- a/include/text.php +++ b/include/text.php @@ -604,7 +604,7 @@ function get_tags($s) { // bookmarks - if(preg_match_all('/#\^\[(url|zrl)=(.*?)\](.*?)\[\/(url|zrl)\]/',$s,$match,PREG_SET_ORDER)) { + if(preg_match_all('/#\^\[(url|zrl)(.*?)\](.*?)\[\/(url|zrl)\]/',$s,$match,PREG_SET_ORDER)) { foreach($match as $mtch) { $ret[] = $mtch[0]; } |