Issue 1228: Pictures aren't sent via API in comments.
This commit is contained in:
parent
fff7a070f9
commit
2f79e98cda
|
@ -733,8 +733,7 @@
|
|||
$_REQUEST['body'] = html2bbcode($txt);
|
||||
}
|
||||
|
||||
}
|
||||
else
|
||||
} else
|
||||
$_REQUEST['body'] = requestdata('status');
|
||||
|
||||
$_REQUEST['title'] = requestdata('title');
|
||||
|
@ -811,6 +810,8 @@
|
|||
}
|
||||
|
||||
$_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
|
||||
|
@ -819,7 +820,6 @@
|
|||
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
|
||||
|
||||
|
|
Loading…
Reference in a new issue