diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-06-25 12:27:28 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-06-25 12:27:28 +0000 |
commit | 35373aa89cfe5bbed7b19f8782feeea22251d5c6 (patch) | |
tree | 357c3a5ed003185ae655065149cc55a0d0c65b13 /includes | |
parent | 84003e47bdef397f9ff7d62ee2848edee23aaa15 (diff) | |
download | brdo-35373aa89cfe5bbed7b19f8782feeea22251d5c6.tar.gz brdo-35373aa89cfe5bbed7b19f8782feeea22251d5c6.tar.bz2 |
- Patch #831332 by Stevel: drupal_get_schema_unprocessed() called in update functions.
Diffstat (limited to 'includes')
-rw-r--r-- | includes/update.inc | 3 |
1 files changed, 2 insertions, 1 deletions
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']); |