Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion includes/common.inc
Original file line number Diff line number Diff line change
Expand Up @@ -2714,7 +2714,7 @@ function page_set_cache() {
// This will fail in some cases, see page_get_cache() for the explanation.
if ($data = ob_get_contents()) {
ob_end_clean();
$cache_lifetime = variable_get('page_cache_lifetime', 0);
$cache_lifetime = variable_get('cache_lifetime', 0);
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

page_cache_lifetime variable isn't anywhere in pressflow code.


if (variable_get('page_compression', TRUE) && extension_loaded('zlib')) {
$data = gzencode($data, 9, FORCE_GZIP);
Expand Down