diff options
author | Dries Buytaert <dries@buytaert.net> | 2006-08-30 08:46:17 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2006-08-30 08:46:17 +0000 |
commit | 8fdf7a87503c9572fa481e4edc2f913a1385eb48 (patch) | |
tree | c25c1206468d5868763a91825ce2505284c9198b /includes/common.inc | |
parent | da47651fb6671965efb459513e986cd5bac8b5fd (diff) | |
download | brdo-8fdf7a87503c9572fa481e4edc2f913a1385eb48.tar.gz brdo-8fdf7a87503c9572fa481e4edc2f913a1385eb48.tar.bz2 |
- Patch #72290 by killes: split up the cache table.
Diffstat (limited to 'includes/common.inc')
-rw-r--r-- | includes/common.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/common.inc b/includes/common.inc index 4ab0e2e57..90c620c63 100644 --- a/includes/common.inc +++ b/includes/common.inc @@ -1597,7 +1597,7 @@ function page_set_cache() { } ob_end_flush(); if ($cache && $data) { - cache_set($base_root . request_uri(), $data, CACHE_TEMPORARY, drupal_get_headers()); + cache_set($base_root . request_uri(), 'cache_page', $data, CACHE_TEMPORARY, drupal_get_headers()); } } } |