diff options
Diffstat (limited to 'modules/field/field.crud.inc')
-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. |