From 35373aa89cfe5bbed7b19f8782feeea22251d5c6 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Fri, 25 Jun 2010 12:27:28 +0000 Subject: - Patch #831332 by Stevel: drupal_get_schema_unprocessed() called in update functions. --- includes/update.inc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'includes') diff --git a/includes/update.inc b/includes/update.inc index d351dcde0..4458ccce4 100644 --- a/includes/update.inc +++ b/includes/update.inc @@ -349,7 +349,8 @@ function update_fix_d7_requirements() { db_add_index('system', 'system_list', array('weight', 'name')); // Add the cache_path table. - $schema['cache_path'] = drupal_get_schema_unprocessed('system', 'cache'); + require_once('./modules/system/system.install'); + $schema['cache_path'] = system_schema_cache_7054(); $schema['cache_path']['description'] = 'Cache table used for path alias lookups.'; db_create_table('cache_path', $schema['cache_path']); -- cgit v1.2.3