diff options
author | zotlabs <mike@macgirvin.com> | 2018-11-15 16:34:09 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2018-11-15 16:34:09 -0800 |
commit | 39d914c9dfe87021351cb2aad9feedd381e791ec (patch) | |
tree | f13c34440bc702085f7d7031a7d14ebb5e006285 /Zotlabs/Module | |
parent | 8d2f4d9dfd90d218a68e0e36ccf537d800b09755 (diff) | |
download | volse-hubzilla-39d914c9dfe87021351cb2aad9feedd381e791ec.tar.gz volse-hubzilla-39d914c9dfe87021351cb2aad9feedd381e791ec.tar.bz2 volse-hubzilla-39d914c9dfe87021351cb2aad9feedd381e791ec.zip |
add item.uuid to relevant places
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Impel.php | 8 | ||||
-rw-r--r-- | Zotlabs/Module/Mood.php | 4 | ||||
-rw-r--r-- | Zotlabs/Module/Subthread.php | 6 |
3 files changed, 12 insertions, 6 deletions
diff --git a/Zotlabs/Module/Impel.php b/Zotlabs/Module/Impel.php index 0c372bd96..e05027d9f 100644 --- a/Zotlabs/Module/Impel.php +++ b/Zotlabs/Module/Impel.php @@ -133,9 +133,11 @@ class Impel extends \Zotlabs\Web\Controller { $arr['author_xchan'] = (($j['author_xchan']) ? $j['author_xchan'] : get_observer_hash()); $arr['mimetype'] = (($j['mimetype']) ? $j['mimetype'] : 'text/bbcode'); - if(! $j['mid']) - $j['mid'] = item_message_id(); - + if(! $j['mid']) { + $j['uuid'] = item_message_id(); + $j['mid'] = z_root() . '/item/' . $j['uuid']; + } + $arr['uuid'] = $j['uuid']; $arr['mid'] = $arr['parent_mid'] = $j['mid']; diff --git a/Zotlabs/Module/Mood.php b/Zotlabs/Module/Mood.php index 16ef0b171..453f08f9f 100644 --- a/Zotlabs/Module/Mood.php +++ b/Zotlabs/Module/Mood.php @@ -70,7 +70,8 @@ class Mood extends Controller { $poster = App::get_observer(); - $mid = item_message_id(); + $uuid = item_message_id(); + $mid = z_root() . '/item/' . $uuid; $action = sprintf( t('%1$s is %2$s','mood'), '[zrl=' . $poster['xchan_url'] . ']' . $poster['xchan_name'] . '[/zrl]' , $verbs[$verb]); @@ -78,6 +79,7 @@ class Mood extends Controller { $arr['aid'] = get_account_id(); $arr['uid'] = $uid; + $arr['uuid'] = $uuid; $arr['mid'] = $mid; $arr['parent_mid'] = (($parent_mid) ? $parent_mid : $mid); $arr['author_xchan'] = $poster['xchan_hash']; diff --git a/Zotlabs/Module/Subthread.php b/Zotlabs/Module/Subthread.php index 1a9caff6c..54343fdfa 100644 --- a/Zotlabs/Module/Subthread.php +++ b/Zotlabs/Module/Subthread.php @@ -106,8 +106,9 @@ class Subthread extends \Zotlabs\Web\Controller { - $mid = item_message_id(); - + $uuid = item_message_id(); + $mid = z_root() . '/item/' . $uuid; + $post_type = (($item['resource_type'] === 'photo') ? t('photo') : t('status')); $links = array(array('rel' => 'alternate','type' => 'text/html', 'href' => $item['plink'])); @@ -145,6 +146,7 @@ class Subthread extends \Zotlabs\Web\Controller { $arr = array(); + $arr['uuid'] = $uuid; $arr['mid'] = $mid; $arr['aid'] = $owner_aid; $arr['uid'] = $owner_uid; |