summaryrefslogtreecommitdiff
path: root/includes
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-04-05 19:00:24 +0000
committerDries Buytaert <dries@buytaert.net>2005-04-05 19:00:24 +0000
commit18e852e4e7839957639c8b3aa319d947f65f28ff (patch)
tree1c1de9cc5aa59bd8e9987e4766db87ce2973044d /includes
parent91e8b1b1e4379419f6afd84c51cef5c79b3c5dd7 (diff)
downloadbrdo-18e852e4e7839957639c8b3aa319d947f65f28ff.tar.gz
brdo-18e852e4e7839957639c8b3aa319d947f65f28ff.tar.bz2
- Patch #19933 by willmoy: stop output buffering once the page has been rendered.
Diffstat (limited to 'includes')
-rw-r--r--includes/bootstrap.inc1
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 75972dc1f..7ad4626a3 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -273,6 +273,7 @@ function page_set_cache() {
$data = gzencode($data, FORCE_GZIP);
}
}
+ ob_end_flush();
cache_set($base_url . request_uri(), $data, CACHE_TEMPORARY, drupal_get_headers());
}
}