diff options
Diffstat (limited to 'modules/system/system.install')
-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 af694203e..1c787f13f 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -3549,6 +3549,17 @@ function system_update_7026() { } /** + * Enable field type modules. + */ +function system_update_7027() { + $ret = array(); + $module_list = array('text', 'number', 'list', 'options'); + 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. */ |