aboutsummaryrefslogtreecommitdiffstats
path: root/Zotlabs/Module/Like.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-05-14 07:09:48 +0000
committerMario <mario@mariovavti.com>2019-05-14 09:14:04 +0200
commitc439fe043744f5cf4dc85b8029b2840eff46ed81 (patch)
tree277fe36454ca721ac9d6d6df3d19c36909c5e0fa /Zotlabs/Module/Like.php
parentb21db670b411544f33dab51520aeb55f3dcd14ea (diff)
downloadvolse-hubzilla-c439fe043744f5cf4dc85b8029b2840eff46ed81.tar.gz
volse-hubzilla-c439fe043744f5cf4dc85b8029b2840eff46ed81.tar.bz2
volse-hubzilla-c439fe043744f5cf4dc85b8029b2840eff46ed81.zip
add autocomplete js to calendar and fix issue with extended likes mid
(cherry picked from commit 15a000bb4554b0dee168eb595c9390a555c59f74)
Diffstat (limited to 'Zotlabs/Module/Like.php')
-rw-r--r--Zotlabs/Module/Like.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/Zotlabs/Module/Like.php b/Zotlabs/Module/Like.php
index 3d1f503b6..052d51d43 100644
--- a/Zotlabs/Module/Like.php
+++ b/Zotlabs/Module/Like.php
@@ -491,7 +491,7 @@ class Like extends \Zotlabs\Web\Controller {
$arr['item_flags'] = $item_flags;
$arr['item_wall'] = $item_wall;
- $arr['parent_mid'] = (($extended_like) ? $mid : $item['mid']);
+ $arr['parent_mid'] = (($extended_like) ? $arr['mid'] : $item['mid']);
$arr['owner_xchan'] = (($extended_like) ? $ch[0]['xchan_hash'] : $thread_owner['xchan_hash']);
$arr['author_xchan'] = $observer['xchan_hash'];
@@ -546,7 +546,7 @@ class Like extends \Zotlabs\Web\Controller {
dbesc($observer['xchan_hash']),
dbesc($ch[0]['channel_hash']),
intval($post_id),
- dbesc($mid),
+ dbesc($arr['mid']),
dbesc($activity),
dbesc(($tgttype)? $tgttype : $objtype),
dbesc($obj_id),
@@ -555,7 +555,7 @@ class Like extends \Zotlabs\Web\Controller {
$r = q("select * from likes where liker = '%s' and likee = '%s' and i_mid = '%s' and verb = '%s' and target_type = '%s' and target_id = '%s' ",
dbesc($observer['xchan_hash']),
dbesc($ch[0]['channel_hash']),
- dbesc($mid),
+ dbesc($arr['mid']),
dbesc($activity),
dbesc(($tgttype)? $tgttype : $objtype),
dbesc($obj_id)