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 /Zotlabs/Module/Photos.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 'Zotlabs/Module/Photos.php')
-rw-r--r-- | Zotlabs/Module/Photos.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Photos.php b/Zotlabs/Module/Photos.php index 3833d5088..a761dbd14 100644 --- a/Zotlabs/Module/Photos.php +++ b/Zotlabs/Module/Photos.php @@ -422,7 +422,7 @@ class Photos extends \Zotlabs\Web\Controller { require_once('include/text.php'); $profile_uid = \App::$profile['profile_uid']; - $results = linkify_tags($a, $rawtags, (local_channel()) ? local_channel() : $profile_uid); + $results = linkify_tags($rawtags, (local_channel()) ? local_channel() : $profile_uid); $success = $results['success']; $post_tags = array(); |