There is now a "content-warning" field

This commit is contained in:
Michael 2018-03-14 22:28:35 +00:00
parent 6352aa112b
commit 5bd519efff
6 changed files with 28 additions and 27 deletions

View file

@ -1182,6 +1182,11 @@ function put_item_in_cache(&$item, $update = false)
// I'm not sure if we should store it permanently, so we save the old value.
$body = $item["body"];
// Add the content warning
if (!empty($item['content-warning'])) {
$item["body"] = $item['content-warning'] . '[spoiler]' . $item["body"] . '[/spoiler]';
}
$a = get_app();
redir_private_images($a, $item);