From bdbda6074cb3bc06b748a557b9c16f775ecc3508 Mon Sep 17 00:00:00 2001 From: friendica Date: Mon, 5 May 2014 16:16:32 -0700 Subject: add message_id to reshared items so that we can eventually notify the original poster via an activity that their item was shared. --- include/bbcode.php | 6 ++++++ mod/share.php | 3 ++- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/include/bbcode.php b/include/bbcode.php index 96242fdac..326676b72 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -200,6 +200,12 @@ function bb_ShareAttributes($match) { if ($matches[1] != "") $posted = $matches[1]; + $message_id = ""; + preg_match("/message_id='(.*?)'/ism", $attributes, $matches); + if ($matches[1] != "") + $message_id = $matches[1]; + + // FIXME - this should really be a wall-item-ago so it will get updated on the client $reldate = (($posted) ? relative_date($posted) : ''); diff --git a/mod/share.php b/mod/share.php index 48965ad36..8b0403663 100644 --- a/mod/share.php +++ b/mod/share.php @@ -50,7 +50,8 @@ function share_init(&$a) { "' profile='".$r[0]['author']['xchan_url'] . "' avatar='".$r[0]['author']['xchan_photo_s']. "' link='".$r[0]['plink']. - "' posted='".$r[0]['created']."']\n"; + "' posted='".$r[0]['created']. + "' message_id='".$r[0]['mid']."']\n"; if($r[0]['title']) $o .= '[b]'.$r[0]['title'].'[/b]'."\n"; $o .= $r[0]['body']; -- cgit v1.2.3