diff options
author | friendica <info@friendica.com> | 2015-02-25 03:14:49 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-25 03:16:43 -0800 |
commit | 1a071ea4f07d4e3a1dd4199f6523d61f8bbc69b8 (patch) | |
tree | fccce94411855a01d361cd3517b1ecd38ac0ff66 /include/items.php | |
parent | 2a2cc309ce2f9a991978d7dda841663825a95370 (diff) | |
download | volse-hubzilla-1a071ea4f07d4e3a1dd4199f6523d61f8bbc69b8.tar.gz volse-hubzilla-1a071ea4f07d4e3a1dd4199f6523d61f8bbc69b8.tar.bz2 volse-hubzilla-1a071ea4f07d4e3a1dd4199f6523d61f8bbc69b8.zip |
call post_local hooks prior to storing a post that is going to be sourced. There are some fields in the actual stored item that may change when we start the second delivery chain so a few plugins may not deal with these items correctly. Since we only source public items these effects will be slight.
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/items.php b/include/items.php index 18ce149ed..b1e17b171 100755 --- a/include/items.php +++ b/include/items.php @@ -3136,6 +3136,8 @@ function start_delivery_chain($channel,$item,$item_id,$parent) { intval($item_id) ); + + if($r) proc_run('php','include/notifier.php','tgroup',$item_id); else |