From 2f79e98cda109a7c79507c30fb3b9c570e5e9e0f Mon Sep 17 00:00:00 2001 From: Michael Vogel Date: Tue, 17 Feb 2015 20:43:11 +0100 Subject: [PATCH] Issue 1228: Pictures aren't sent via API in comments. --- include/api.php | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/include/api.php b/include/api.php index c8a313ce19..4d714e583f 100644 --- a/include/api.php +++ b/include/api.php @@ -733,8 +733,7 @@ $_REQUEST['body'] = html2bbcode($txt); } - } - else + } else $_REQUEST['body'] = requestdata('status'); $_REQUEST['title'] = requestdata('title'); @@ -811,14 +810,15 @@ } $_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