Bläddra i källkod

Rebasing PR
Fix form without enctype="multipart/form-data" [Issues 228, 677].

phansys 13 år sedan
förälder
incheckning
fc56c08de5
1 ändrade filer med 4 tillägg och 4 borttagningar
  1. 4 4
      Resources/views/CRUD/edit_orm_one_association_script.html.twig

+ 4 - 4
Resources/views/CRUD/edit_orm_one_association_script.html.twig

@@ -43,10 +43,10 @@ This code manage the one-to-many association field popup
             data: { _xml_http_request: true },
             success: function(html) {
                 jQuery('#field_container_{{ id }}').replaceWith(html); // replace the html
-								if(jQuery(form + 'input[type="file"]').length > 0) {
-									jQuery(form).attr('enctype', 'multipart/form-data');
-									jQuery(form).attr('encoding', 'multipart/form-data');
-								}
+                if(jQuery(form + 'input[type="file"]').length > 0) {
+                    jQuery(form).attr('enctype', 'multipart/form-data');
+                    jQuery(form).attr('encoding', 'multipart/form-data');
+                }
                 jQuery('#sonata-ba-field-container-{{ id }}').trigger('sonata.add_element');
             }
         });