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 /include/api.php | |
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 'include/api.php')
-rw-r--r-- | include/api.php | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/include/api.php b/include/api.php index b77156dfa..cee1fde23 100644 --- a/include/api.php +++ b/include/api.php @@ -565,18 +565,19 @@ if(requestdata('lat') && requestdata('long')) $_REQUEST['coord'] = sprintf("%s %s",requestdata('lat'),requestdata('long')); $_REQUEST['profile_uid'] = local_user(); - if(requestdata('parent')) +// if(requestdata('parent')) + if($parent) $_REQUEST['type'] = 'net-comment'; else { $_REQUEST['type'] = 'wall'; - if(x($_FILES,'media')) { - // upload the image if we have one - $_REQUEST['hush']='yeah'; //tell wall_upload function to return img info instead of echo - require_once('mod/wall_upload.php'); - $media = wall_upload_post($a); - if(strlen($media)>0) - $_REQUEST['body'] .= "\n\n".$media; - } + if(x($_FILES,'media')) { + // upload the image if we have one + $_REQUEST['hush']='yeah'; //tell wall_upload function to return img info instead of echo + require_once('mod/wall_upload.php'); + $media = wall_upload_post($a); + if(strlen($media)>0) + $_REQUEST['body'] .= "\n\n".$media; + } } // set this so that the item_post() function is quiet and doesn't redirect or emit json |