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 | |
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')
-rw-r--r-- | include/bookmarks.php | 4 | ||||
-rwxr-xr-x | include/text.php | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/include/bookmarks.php b/include/bookmarks.php index 3ca8ee1c1..3a4c5c5d6 100644 --- a/include/bookmarks.php +++ b/include/bookmarks.php @@ -7,6 +7,10 @@ function bookmark_add($channel,$sender,$taxonomy,$private) { $iarr = array(); $channel_id = $channel['channel_id']; + + + + if($private) $iarr['contact_allow'] = array($channel['channel_hash']); $iarr['mitem_link'] = $taxonomy['url']; 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]; } |