diff options
author | Friendika <info@friendika.com> | 2011-02-09 19:39:49 -0800 |
---|---|---|
committer | Friendika <info@friendika.com> | 2011-02-09 19:39:49 -0800 |
commit | de2c9531db2332f0c0e944add6f9d85e88476dff (patch) | |
tree | 993520ba3ab11c44121b5040f6cd4551b5eacbff /mod | |
parent | 05c52ae81da6ce3c3b57672c2560072e1ce2705c (diff) | |
download | volse-hubzilla-de2c9531db2332f0c0e944add6f9d85e88476dff.tar.gz volse-hubzilla-de2c9531db2332f0c0e944add6f9d85e88476dff.tar.bz2 volse-hubzilla-de2c9531db2332f0c0e944add6f9d85e88476dff.zip |
post permission hooks
Diffstat (limited to 'mod')
-rw-r--r-- | mod/item.php | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mod/item.php b/mod/item.php index 737fe8341..a83373f59 100644 --- a/mod/item.php +++ b/mod/item.php @@ -22,6 +22,8 @@ function item_post(&$a) { $uid = local_user(); + call_hooks('post_local_start', $_POST); + $parent = ((x($_POST,'parent')) ? intval($_POST['parent']) : 0); $parent_item = null; |