Merge pull request #1403 from annando/issue-1228

Issue 1228: Pictures aren't sent via API in comments.
This commit is contained in:
Tobias Diekershoff 2015-02-19 09:25:41 +01:00
commit 29bd6c9853

View file

@ -733,8 +733,7 @@
$_REQUEST['body'] = html2bbcode($txt); $_REQUEST['body'] = html2bbcode($txt);
} }
} } else
else
$_REQUEST['body'] = requestdata('status'); $_REQUEST['body'] = requestdata('status');
$_REQUEST['title'] = requestdata('title'); $_REQUEST['title'] = requestdata('title');
@ -811,14 +810,15 @@
} }
$_REQUEST['type'] = 'wall'; $_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 if(x($_FILES,'media')) {
require_once('mod/wall_upload.php'); // upload the image if we have one
$media = wall_upload_post($a); $_REQUEST['hush']='yeah'; //tell wall_upload function to return img info instead of echo
if(strlen($media)>0) require_once('mod/wall_upload.php');
$_REQUEST['body'] .= "\n\n".$media; $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 // set this so that the item_post() function is quiet and doesn't redirect or emit json