Many thanks for your help! I was able to find a bug with how the caching works/worked and made a patch.
First off, you need to patch your file include/functions_entries.inc.php.
You need to find this code within the function serendipity_printEntries():
Code: Select all
serendipity_plugin_api::hook_event('frontend_display', $entry);
Code: Select all
$addData = array('from' => 'functions_entries:printEntries');
if ($entry['is_cached']) {
$addData['no_scramble'] = true;
}
serendipity_plugin_api::hook_event('frontend_display', $entry, $addData);
http://nopaste.php-q.net/209361
HTH,
Garvin