diff options
author | Dries Buytaert <dries@buytaert.net> | 2010-01-13 14:06:46 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2010-01-13 14:06:46 +0000 |
commit | d2fc4b69f7d5be2b620851f8618935b291812ef2 (patch) | |
tree | b3fccf4d82164ee937a5d8c9aebed1dbb22ca72b | |
parent | d0d3407f5da78778c277cbd09477120e315295a4 (diff) | |
download | brdo-d2fc4b69f7d5be2b620851f8618935b291812ef2.tar.gz brdo-d2fc4b69f7d5be2b620851f8618935b291812ef2.tar.bz2 |
- Patch #683028 by litwol: fixed typo that prevented field storage from being pluggable.
-rw-r--r-- | modules/field/field.crud.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/field/field.crud.inc b/modules/field/field.crud.inc index f478bff8a..7b502943f 100644 --- a/modules/field/field.crud.inc +++ b/modules/field/field.crud.inc @@ -423,7 +423,7 @@ function field_update_field($field) { // Tell the storage engine to update the field. Do this before // saving the new definition since it still might fail. - module_invoke(variable_get('field_storage_module', 'field_sql_storage'), 'field_storage_update_field', $field, $prior_field, $has_data); + module_invoke(variable_get('field_storage_default', 'field_sql_storage'), 'field_storage_update_field', $field, $prior_field, $has_data); // Save the new field definition. @todo: refactor with // field_create_field. |