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 /include/api.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 '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 |