diff options
Diffstat (limited to 'mod')
-rwxr-xr-x | mod/dfrn_request.php | 1 | ||||
-rwxr-xr-x | mod/item.php | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/mod/dfrn_request.php b/mod/dfrn_request.php index aa14bc473..ceec83e90 100755 --- a/mod/dfrn_request.php +++ b/mod/dfrn_request.php @@ -577,6 +577,7 @@ function dfrn_request_content(&$a) { 'language' => $r[0]['language'], 'to_name' => $r[0]['username'], 'to_email' => $r[0]['email'], + 'uid' => $r[0]['uid'], 'link' => $a->get_baseurl() . '/notifications/intros', 'source_name' => ((strlen(stripslashes($r[0]['name']))) ? stripslashes($r[0]['name']) : t('[Name Withheld]')), 'source_link' => $r[0]['url'], diff --git a/mod/item.php b/mod/item.php index e59b45acc..3035989f3 100755 --- a/mod/item.php +++ b/mod/item.php @@ -746,6 +746,7 @@ function item_post(&$a) { 'language' => $user['language'], 'to_name' => $user['username'], 'to_email' => $user['email'], + 'uid' => $user['uid'], 'item' => $datarray, 'link' => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id, 'source_name' => $datarray['author-name'], @@ -788,6 +789,7 @@ function item_post(&$a) { 'language' => $user['language'], 'to_name' => $user['username'], 'to_email' => $user['email'], + 'uid' => $user['uid'], 'item' => $datarray, 'link' => $a->get_baseurl() . '/display/' . $user['nickname'] . '/' . $post_id, 'source_name' => $datarray['author-name'], |