diff options
author | zotlabs <mike@macgirvin.com> | 2019-02-03 16:53:49 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2019-02-03 16:53:49 -0800 |
commit | 8ff9a9ff08db1a6e821b9d74c0a58e8ced174d9b (patch) | |
tree | b88764d7e68fef0a694c1d41fe08e21aa2281abd /include/message.php | |
parent | a56bc0e1e03aa6b369cf33fc4f4af49c55f3a276 (diff) | |
download | volse-hubzilla-8ff9a9ff08db1a6e821b9d74c0a58e8ced174d9b.tar.gz volse-hubzilla-8ff9a9ff08db1a6e821b9d74c0a58e8ced174d9b.tar.bz2 volse-hubzilla-8ff9a9ff08db1a6e821b9d74c0a58e8ced174d9b.zip |
fix linkify_tags() so it works with xchans across multiple protocols, also some fixes to activity parsing from upstream.
Diffstat (limited to 'include/message.php')
-rw-r--r-- | include/message.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/message.php b/include/message.php index 936c01631..037c59c60 100644 --- a/include/message.php +++ b/include/message.php @@ -44,7 +44,7 @@ function send_message($uid = 0, $recipient = '', $body = '', $subject = '', $rep $body = cleanup_bbcode($body); - $results = linkify_tags($a, $body, $uid); + $results = linkify_tags($body, $uid); if(! $raw) { if(preg_match_all("/\[attachment\](.*?)\[\/attachment\]/",((strpos($body,'[/crypt]')) ? $_POST['media_str'] : $body),$match)) { |