diff options
author | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-01 09:32:17 +0000 |
---|---|---|
committer | Angie Byron <webchick@24967.no-reply.drupal.org> | 2009-03-01 09:32:17 +0000 |
commit | 27369e8b96226dc92496a04560ab4561be5a10d3 (patch) | |
tree | 523cf3dedf2ec1bdc7aedd1e6d77fa068308a2b0 /modules/system | |
parent | 7cc7e080a097169f8578e4680c535ea6e06ab151 (diff) | |
download | brdo-27369e8b96226dc92496a04560ab4561be5a10d3.tar.gz brdo-27369e8b96226dc92496a04560ab4561be5a10d3.tar.bz2 |
#304163 by chx: Allow update.php to re-generate settings.php. Now possible to upgrade Drupal 6 to Drupal 7. Oh, yeah.
Diffstat (limited to 'modules/system')
-rw-r--r-- | modules/system/system.install | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index 460836948..faef5d4ad 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3226,6 +3226,17 @@ function system_update_7019() { } /** + * Enable field module. + */ +function system_update_7020() { + $ret = array(); + $module_list = array('field_sql_storage', 'field'); + drupal_install_modules($module_list); + module_enable($module_list); + return $ret; +} + +/** * @} End of "defgroup updates-6.x-to-7.x" * The next series of updates should start at 8000. */ |