aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-06-12 01:02:05 -0700
committerfriendica <info@friendica.com>2012-06-12 01:02:05 -0700
commitc53e1112d55b45a3320b151bcc56b9d2340082d7 (patch)
treeb80bdee944140c2c330968136eeaa8b047f0685c
parent6f1efccf1cb49c5814735d0b9e2d107e9a8041cc (diff)
parent645c2f90928bc5a29548001f9600ca3807b8c149 (diff)
downloadvolse-hubzilla-c53e1112d55b45a3320b151bcc56b9d2340082d7.tar.gz
volse-hubzilla-c53e1112d55b45a3320b151bcc56b9d2340082d7.tar.bz2
volse-hubzilla-c53e1112d55b45a3320b151bcc56b9d2340082d7.zip
Merge https://github.com/friendica/friendica into pull
-rwxr-xr-xinclude/items.php10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php
index 38bdf31c0..d543dcab0 100755
--- a/include/items.php
+++ b/include/items.php
@@ -908,6 +908,16 @@ function item_store($arr,$force_parent = false) {
intval($current_post)
);
+ $arr['id'] = $current_post;
+ $arr['parent'] = $parent_id;
+ $arr['allow_cid'] = $allow_cid;
+ $arr['allow_gid'] = $allow_gid;
+ $arr['deny_cid'] = $deny_cid;
+ $arr['deny_gid'] = $deny_gid;
+ $arr['private'] = $private;
+ $arr['deleted'] = $parent_deleted;
+ call_hooks('post_remote_end',$arr);
+
// update the commented timestamp on the parent
q("UPDATE `item` set `commented` = '%s', `changed` = '%s' WHERE `id` = %d LIMIT 1",