summaryrefslogtreecommitdiff
path: root/modules/block
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2010-05-19 19:14:43 +0000
committerDries Buytaert <dries@buytaert.net>2010-05-19 19:14:43 +0000
commit63dba2a07da80609306e9e09e88cc989bbd71de6 (patch)
treeff8aa7337fd6d1e239f8c18ca02ecfed8534f326 /modules/block
parent0444684a2be60cdbb34874c82b970446198b7b07 (diff)
downloadbrdo-63dba2a07da80609306e9e09e88cc989bbd71de6.tar.gz
brdo-63dba2a07da80609306e9e09e88cc989bbd71de6.tar.bz2
- Patch #692044 by Damien Tournoud, effulgentsia, jbrown: a site with statistics module enabled is much slower in serving cached pages in D7 than in D6.
Diffstat (limited to 'modules/block')
-rw-r--r--modules/block/block.install7
1 files changed, 7 insertions, 0 deletions
diff --git a/modules/block/block.install b/modules/block/block.install
index ce2633eea..8f6863a90 100644
--- a/modules/block/block.install
+++ b/modules/block/block.install
@@ -387,3 +387,10 @@ function block_update_7004() {
// Rebuild theme data, so the new 'help' region is identified.
system_rebuild_theme_data();
}
+
+/**
+ * Remove {cache_block}.headers column.
+ */
+function block_update_7005() {
+ db_drop_field('cache_block', 'headers');
+}