diff options
author | friendica <info@friendica.com> | 2012-06-25 14:19:48 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-06-25 14:19:48 -0700 |
commit | cb1d35fb0958cf699adc4c4aacc75587b2c25f85 (patch) | |
tree | d9f66cce9af6f09054a423e41c7e557a021fc824 /mod | |
parent | d0e14809fd7cd9783b84915c4fe94ee08d4a72aa (diff) | |
parent | fa7e803f73586ca056506a85dbb7b34f26498d2f (diff) | |
download | volse-hubzilla-cb1d35fb0958cf699adc4c4aacc75587b2c25f85.tar.gz volse-hubzilla-cb1d35fb0958cf699adc4c4aacc75587b2c25f85.tar.bz2 volse-hubzilla-cb1d35fb0958cf699adc4c4aacc75587b2c25f85.zip |
Merge pull request #359 from fermionic/mustard-prevent-comment-doubles
fix check for parent of StatusNet API post
Diffstat (limited to 'mod')
-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); |