79308158

Date: 2024-12-25 18:44:23
Score: 0.5
Natty:
Report link

Because you send params like

hiddenInput.setAttribute('name', "[user][card_" + field + "]");

and name of param is [user], not user

On you screenshot there is [user] in params, but should be user

Probably to fix this you need to set

hiddenInput.setAttribute('name', "user[card_" + field + "]");
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Anton Bogdanov