diff --git a/modules/system/assets/js/framework.js b/modules/system/assets/js/framework.js index 84549154e..1b6e9d0c7 100644 --- a/modules/system/assets/js/framework.js +++ b/modules/system/assets/js/framework.js @@ -74,7 +74,7 @@ if (window.jQuery === undefined) if ($el.is(':input') && !$form.length) { var inputName = $el.attr('name') - if (options.data[inputName] === undefined) + if (inputName !== undefined && options.data[inputName] === undefined) options.data[inputName] = $el.val() }