Index: src/lib/tools/scripts.cpp =================================================================== --- src/lib/tools/scripts.cpp +++ src/lib/tools/scripts.cpp @@ -232,7 +232,7 @@ " var type = input.type.toLowerCase();" " if (type != 'text' && type != 'password' && type != 'email')" " continue;" - " if (input.name == key) {" + " if (input.name == key && key != \"\") {" " input.value = val;" " input.dispatchEvent(new Event('change'));" " }"