diff options
author | friendica <info@friendica.com> | 2012-02-18 02:57:42 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-02-18 02:57:42 -0800 |
commit | 1b9c03f6fc67e8230a06e6dddae59974c1f8ba56 (patch) | |
tree | 1a57120b10b5088098f88932643a8a46a422b104 /mod/item.php | |
parent | 4222f506a82c7b2a50b602c51a83a85e1912450c (diff) | |
download | volse-hubzilla-1b9c03f6fc67e8230a06e6dddae59974c1f8ba56.tar.gz volse-hubzilla-1b9c03f6fc67e8230a06e6dddae59974c1f8ba56.tar.bz2 volse-hubzilla-1b9c03f6fc67e8230a06e6dddae59974c1f8ba56.zip |
new notifications - implement storage
Diffstat (limited to 'mod/item.php')
-rwxr-xr-x | mod/item.php | 2 |
1 files changed, 2 insertions, 0 deletions
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'], |