diff options
author | Michael Johnston <michaelgeorgejohnston@gmail.com> | 2012-04-22 13:37:25 -0400 |
---|---|---|
committer | Michael Johnston <michaelgeorgejohnston@gmail.com> | 2012-04-22 13:37:25 -0400 |
commit | 76aa9b3037a69d7d3be7e2f7c1416438a30dd577 (patch) | |
tree | 35bb52d1b0d5e12d98c5cfdfa85876ed9d72ad63 /include/api.php | |
parent | 9434b447f3302a7f3223fb01f3c71378b8764e92 (diff) | |
download | volse-hubzilla-76aa9b3037a69d7d3be7e2f7c1416438a30dd577.tar.gz volse-hubzilla-76aa9b3037a69d7d3be7e2f7c1416438a30dd577.tar.bz2 volse-hubzilla-76aa9b3037a69d7d3be7e2f7c1416438a30dd577.zip |
api: add support for StatusNet-style media param to API
Diffstat (limited to 'include/api.php')
-rw-r--r-- | include/api.php | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/include/api.php b/include/api.php index 0885a1434..f9be68c3d 100644 --- a/include/api.php +++ b/include/api.php @@ -567,8 +567,17 @@ $_REQUEST['profile_uid'] = local_user(); if(requestdata('parent')) $_REQUEST['type'] = 'net-comment'; - else + 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; + } + } // set this so that the item_post() function is quiet and doesn't redirect or emit json |