1
0
Fork 0

FIX: also delete Category Cust Fld for wizrds with names of mult words

Dieser Commit ist enthalten in:
merefield 2023-07-18 13:53:09 +01:00
Ursprung 10d597c495
Commit ec88af0cc0

Datei anzeigen

@ -64,7 +64,7 @@ class CustomWizard::Template
ensure_wizard_upload_references!(wizard_id)
PluginStore.remove(CustomWizard::PLUGIN_NAME, wizard.id)
clear_user_wizard_redirect(wizard_id, after_time: !!wizard.after_time)
related_custom_fields = CategoryCustomField.where(name: 'create_topic_wizard', value: wizard.name)
related_custom_fields = CategoryCustomField.where(name: 'create_topic_wizard', value: wizard.name.parameterize.underscore)
related_custom_fields.destroy_all
end