After migrating a CCK content type that used money 5.x-1.6 to Drupal 6 (money 6.x-1.2), the widget type remains 'money_default', even though I believe it should now be called 'money_widget'. The CCK edit dialog displays the message "This content type has inactive fields. Inactive fields are not included in lists of available fields until their modules are enabled." and in particular complains about all money fields: "Some Field (field_somefield) is an inactive Money field that uses a money_default widget."

Comments

jpl-2’s picture

Here is a manual workaround to get rid of this problem after D5->D6 migration:
1. update content_node_field_instance set widget_type='money_widget' where widget_type='money_default';
2. Re-enable the "Money CCK field" module

As a general solution, the above SQL query should probably appear in money.install to facilitate D5->D6 migration.

kenorb’s picture

Issue summary: View changes
Status: Active » Closed (won't fix)