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:
Ingo Schommer 2011-09-14 09:25:00 +02:00
parent 9ee32ab5de
commit b0a99ad3e2

View File

@ -653,7 +653,7 @@ ChangeTracker.prototype = {
* Serialize all the fields on the page
*/
serializeAllFields: function() {
return Form.serializeWithoutButtons(this);
return jQuery(this).serialize();
}
}