diff options
author | git-marijus <mario@mariovavti.com> | 2017-08-03 21:36:26 +0200 |
---|---|---|
committer | git-marijus <mario@mariovavti.com> | 2017-08-03 21:37:05 +0200 |
commit | 05444f92f98967841bfde9a3a88115cc13d09a92 (patch) | |
tree | 5bec896d6bca88bd5f3b2635605d2a194033a870 | |
parent | d704832ff6b3049a960fef13cada484270fde451 (diff) | |
download | volse-hubzilla-05444f92f98967841bfde9a3a88115cc13d09a92.tar.gz volse-hubzilla-05444f92f98967841bfde9a3a88115cc13d09a92.tar.bz2 volse-hubzilla-05444f92f98967841bfde9a3a88115cc13d09a92.zip |
missing observer hash
-rw-r--r-- | Zotlabs/Module/Item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index 9e64528fa..5e7a3fbc0 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -634,7 +634,7 @@ class Item extends \Zotlabs\Web\Controller { $attach_link = ''; $hash = substr($mtch,0,strpos($mtch,',')); $rev = intval(substr($mtch,strpos($mtch,','))); - $r = attach_by_hash_nodata($hash,$rev); + $r = attach_by_hash_nodata($hash, $observer['xchan_hash'], $rev); if($r['success']) { $attachments[] = array( 'href' => z_root() . '/attach/' . $r['data']['hash'], |