diff options
author | Zach Prezkuta <fermion@gmx.com> | 2012-06-16 21:41:23 -0600 |
---|---|---|
committer | Zach Prezkuta <fermion@gmx.com> | 2012-06-25 08:26:12 -0600 |
commit | fa7e803f73586ca056506a85dbb7b34f26498d2f (patch) | |
tree | 6ad814297df92c16961fe4a5332e2302e19a912d /mod/item.php | |
parent | 7ea5917bf794c431fe304fa25380f19a6927cf63 (diff) | |
download | volse-hubzilla-fa7e803f73586ca056506a85dbb7b34f26498d2f.tar.gz volse-hubzilla-fa7e803f73586ca056506a85dbb7b34f26498d2f.tar.bz2 volse-hubzilla-fa7e803f73586ca056506a85dbb7b34f26498d2f.zip |
fix check for parent of StatusNet API post
Diffstat (limited to 'mod/item.php')
-rw-r--r-- | mod/item.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mod/item.php b/mod/item.php index c1c0b14ec..54f9fc06a 100644 --- a/mod/item.php +++ b/mod/item.php @@ -108,7 +108,7 @@ function item_post(&$a) { } } - if($parent) logger('mod_post: parent=' . $parent); + if($parent) logger('mod_item: item_post parent=' . $parent); $profile_uid = ((x($_REQUEST,'profile_uid')) ? intval($_REQUEST['profile_uid']) : 0); $post_id = ((x($_REQUEST,'post_id')) ? intval($_REQUEST['post_id']) : 0); |