This commit is contained in:
Lendemor 2024-12-18 17:44:03 +01:00
parent 16ae812882
commit 40daefc3d6

View File

@ -182,7 +182,7 @@ class Form(BaseHTML):
props["handle_submit_unique_name"] = ""
form = super().create(*children, **props)
form.handle_submit_unique_name = md5(
str(**form._get_all_hooks()).encode("utf-8")
str(form._get_all_hooks()).encode("utf-8")
).hexdigest()
return form