Commit 3d2028cdbef386fdd375f615a06b3a45ed1b0746
1 parent
49c4fd88
Fix the attribute name to correct one "action".
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
web/making_a_web_site.anubis
| ... | ... | @@ -1356,7 +1356,7 @@ public define CoreAttrs formmethod(FormMethod method) = attr("formmethod", if me |
| 1356 | 1356 | |
| 1357 | 1357 | public define CoreAttrs method(String value) = attr("method", value). |
| 1358 | 1358 | public define CoreAttrs action(WEB_Action_Name action)= attr("action", "/"+format_web_action_name(action)). |
| 1359 | -public define CoreAttrs action(WEB_Action_Name action, List((String,String)) extra_ops)= attr("formaction", "/"+format_web_action_name(action, extra_ops)). | |
| 1359 | +public define CoreAttrs action(WEB_Action_Name action, List((String,String)) extra_ops)= attr("action", "/"+format_web_action_name(action, extra_ops)). | |
| 1360 | 1360 | public define CoreAttrs formmethod(String value) = attr("formmethod", value). |
| 1361 | 1361 | public define CoreAttrs form(String value) = attr("form", value). |
| 1362 | 1362 | ... | ... |