Fix for CW: Items weren't cached
This commit is contained in:
parent
d376ed6f61
commit
e28020c68a
1 changed files with 5 additions and 5 deletions
|
@ -1171,6 +1171,11 @@ function redir_private_images($a, &$item)
|
||||||
|
|
||||||
function put_item_in_cache(&$item, $update = false)
|
function put_item_in_cache(&$item, $update = false)
|
||||||
{
|
{
|
||||||
|
// Add the content warning
|
||||||
|
if (!empty($item['content-warning'])) {
|
||||||
|
$item["body"] = $item['content-warning'] . '[spoiler]' . $item["body"] . '[/spoiler]';
|
||||||
|
}
|
||||||
|
|
||||||
$rendered_hash = defaults($item, 'rendered-hash', '');
|
$rendered_hash = defaults($item, 'rendered-hash', '');
|
||||||
|
|
||||||
if ($rendered_hash == ''
|
if ($rendered_hash == ''
|
||||||
|
@ -1182,11 +1187,6 @@ function put_item_in_cache(&$item, $update = false)
|
||||||
// I'm not sure if we should store it permanently, so we save the old value.
|
// I'm not sure if we should store it permanently, so we save the old value.
|
||||||
$body = $item["body"];
|
$body = $item["body"];
|
||||||
|
|
||||||
// Add the content warning
|
|
||||||
if (!empty($item['content-warning'])) {
|
|
||||||
$item["body"] = $item['content-warning'] . '[spoiler]' . $item["body"] . '[/spoiler]';
|
|
||||||
}
|
|
||||||
|
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
redir_private_images($a, $item);
|
redir_private_images($a, $item);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue