Merge pull request #14167 from annando/warning
Fix: Undefined array key "content-warning"pull/14168/head
commit
a5e12c82df
|
@ -238,6 +238,8 @@ function item_process(array $post, array $request, bool $preview, string $return
|
|||
$post['api_source'] = false;
|
||||
$post['attach'] = '';
|
||||
$post['title'] = trim($request['title'] ?? '');
|
||||
$post['content-warning'] = trim($request['summary'] ?? '');
|
||||
$post['sensitive'] = !empty($request['sensitive'] ?? false);
|
||||
$post['body'] = $request['body'] ?? '';
|
||||
$post['location'] = trim($request['location'] ?? '');
|
||||
$post['coord'] = trim($request['coord'] ?? '');
|
||||
|
|
Loading…
Reference in New Issue