mirror of
https://github.com/silverstripe/silverstripe-cms
synced 2024-10-22 06:05:56 +00:00
BUGFIX Use jQuery.serialize() instead of an ancient version of prototype's Form.serializeWithoutButtons() in LeftAndMain.js (it fails to serialise <select multiple> properly) (AIR-35)
This commit is contained in:
parent
9ee32ab5de
commit
b0a99ad3e2
@ -653,7 +653,7 @@ ChangeTracker.prototype = {
|
||||
* Serialize all the fields on the page
|
||||
*/
|
||||
serializeAllFields: function() {
|
||||
return Form.serializeWithoutButtons(this);
|
||||
return jQuery(this).serialize();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user