diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-10-31 03:44:09 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-10-31 03:44:09 +0000 |
commit | a234921b5f0f584c4508ab7b5ce88990a4907ace (patch) | |
tree | 0efd52bb058908bf66f952a88a6ecc63c386890d /modules/system/system.install | |
parent | 1ddcd75ff3e081e6f93f02731feccf8a1e3597f4 (diff) | |
download | brdo-a234921b5f0f584c4508ab7b5ce88990a4907ace.tar.gz brdo-a234921b5f0f584c4508ab7b5ce88990a4907ace.tar.bz2 |
- Patch #939914 by yched: Field UI not enabled on a D6 upgrade.
Diffstat (limited to 'modules/system/system.install')
-rw-r--r-- | modules/system/system.install | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/system/system.install b/modules/system/system.install index ad9bc8c70..ca98e390b 100644 --- a/modules/system/system.install +++ b/modules/system/system.install @@ -2085,10 +2085,10 @@ function system_update_7018() { } /** - * Enable field module. + * Enable field and field_ui modules. */ function system_update_7020() { - $module_list = array('field_sql_storage', 'field'); + $module_list = array('field_sql_storage', 'field', 'field_ui'); module_enable($module_list, FALSE); } |