summaryrefslogtreecommitdiff
path: root/modules/system
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/system
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/system')
-rw-r--r--modules/system/system.install2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/system/system.install b/modules/system/system.install
index a80e6ceda..38eec361d 100644
--- a/modules/system/system.install
+++ b/modules/system/system.install
@@ -2380,7 +2380,7 @@ function system_update_7053() {
* Remove {cache_*}.headers columns.
*/
function system_update_7054() {
- $cache_tables = array('cache', 'cache_bootstrap', 'cache_filter', 'cache_form', 'cache_menu', 'cache_page', 'cache_path');
+ $cache_tables = array('cache', 'cache_filter', 'cache_form', 'cache_menu', 'cache_page', 'cache_path');
foreach ($cache_tables as $table) {
db_drop_field($table, 'headers');
}