[frio] import contacts form was missing the enctype
fixes #11492 hopefully For uploading files, the enctype for the form has to be set to `multipart/form-data`. Frio was missing this specification, other themes inherit it from the default template.
This commit is contained in:
parent
7026dd37db
commit
d816f02ab8
|
@ -237,7 +237,7 @@
|
|||
</form>
|
||||
|
||||
{{* Import contacts CSV *}}
|
||||
<form action="settings/account/importcontact" method="post" autocomplete="off" class="panel">
|
||||
<form action="settings/account/importcontact" method="post" autocomplete="off" class="panel" enctype="multipart/form-data">
|
||||
<input type="hidden" name="form_security_token" value="{{$form_security_token}}">
|
||||
<div class="section-subtitle-wrapper panel-heading" role="tab" id="importcontact-settings">
|
||||
<h2>
|
||||
|
|
Loading…
Reference in a new issue