From 5945c30693916783bbfafb5e92d456acddb0893d Mon Sep 17 00:00:00 2001 From: David Rothstein Date: Tue, 6 May 2014 07:56:09 -0400 Subject: Issue #2245331 by bendikrb: Use of reserved word in ajax.js breaks IE8. --- misc/ajax.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'misc/ajax.js') diff --git a/misc/ajax.js b/misc/ajax.js index 63dd65fdd..29483b498 100644 --- a/misc/ajax.js +++ b/misc/ajax.js @@ -622,7 +622,7 @@ Drupal.ajax.prototype.commands = { * Command to update a form's build ID. */ updateBuildId: function(ajax, response, status) { - $('input[name="form_build_id"][value="' + response.old + '"]').val(response.new); + $('input[name="form_build_id"][value="' + response['old'] + '"]').val(response['new']); } }; -- cgit v1.2.3