-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
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
bug-form_open_multipart #345
Comments
I give a try to fix it at #351 |
Hi @samsonasik I Think that this is not a issue. The form works and the file is upload succesfully. All attributes are being escaped using escapeHtmlAttr function from Zend Escaper Library. Please look this https://framework.zend.com/manual/2.1/en/modules/zend.escaper.escaping-html-attributes.html |
Ok, closing #351 ;) |
Yup, even though it looks strange, it all works as expected in all of my tests. |
<?php echo form_open_multipart('user/login',['class'=>'form']);?>
when I use form_open_multipart, it would create the follow code
<form action="http://127.0.0.1/user/login" class="form" enctype="multipart/form-data" method="post" accept-charset="utf-8">
please note the enctype, '/' was changed to
/
The text was updated successfully, but these errors were encountered: