Caching improved.
This commit is contained in:
parent
74b3e9f273
commit
670b571c8a
|
@ -874,16 +874,20 @@ function link_compare($a,$b) {
|
|||
if(! function_exists('prepare_body')) {
|
||||
function prepare_body($item,$attach = false) {
|
||||
|
||||
call_hooks('prepare_body_init', $item);
|
||||
|
||||
$cache = get_config('system','itemcache');
|
||||
|
||||
if (($cache != '')) {
|
||||
$cachefile = $cache."/".$item["guid"]."-".strtotime($item["edited"])."-".$attach;
|
||||
$cachefile = $cache."/".$item["guid"]."-".strtotime($item["edited"])."-".$attach."-".hash("crc32", $item['body']);
|
||||
|
||||
if (file_exists($cachefile))
|
||||
return(file_get_contents($cachefile));
|
||||
$s = file_get_contents($cachefile);
|
||||
else {
|
||||
$s = prepare_text($item['body']);
|
||||
file_put_contents($cachefile, $s);
|
||||
}
|
||||
|
||||
call_hooks('prepare_body_init', $item);
|
||||
|
||||
} else
|
||||
$s = prepare_text($item['body']);
|
||||
|
||||
$prep_arr = array('item' => $item, 'html' => $s);
|
||||
|
@ -891,8 +895,6 @@ function prepare_body($item,$attach = false) {
|
|||
$s = $prep_arr['html'];
|
||||
|
||||
if(! $attach) {
|
||||
if ($cache != '')
|
||||
file_put_contents($cachefile, $s);
|
||||
return $s;
|
||||
}
|
||||
|
||||
|
@ -925,13 +927,9 @@ function prepare_body($item,$attach = false) {
|
|||
$s .= '<div class="clear"></div></div>';
|
||||
}
|
||||
|
||||
|
||||
$prep_arr = array('item' => $item, 'html' => $s);
|
||||
call_hooks('prepare_body_final', $prep_arr);
|
||||
|
||||
if ($cache != '')
|
||||
file_put_contents($cachefile, $prep_arr['html']);
|
||||
|
||||
return $prep_arr['html'];
|
||||
}}
|
||||
|
||||
|
|
Loading…
Reference in a new issue