We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If you give a form a CSS-ID and include the form in the front end, the CSS-ID will be used for both the container element and the form itself.
foo
<?= \Controller::getForm(…) ?>
{{insert_form::*}}
ce_form
mod_form
<div class="ce_form block" id="foo"> <form action="foo.html" id="foo" method="post" enctype="application/x-www-form-urlencoded"> … </form> </div>
The text was updated successfully, but these errors were encountered:
Kann den Fehler bestätigen und reproduzieren.
Sorry, something went wrong.
Correctly assign the form CSS ID (see #956)
ee9ba7f
Fixed in ee9ba7f.
leofeyer
No branches or pull requests
If you give a form a CSS-ID and include the form in the front end, the CSS-ID will be used for both the container element and the form itself.
Reproduction
foo.<?= \Controller::getForm(…) ?>{{insert_form::*}}.ce_formormod_form):The text was updated successfully, but these errors were encountered: