From 6e451a1fba627150ff2e6870ca20875af9e29b6e Mon Sep 17 00:00:00 2001 From: Lee Rowlands <lee.rowlands@previousnext.com.au> Date: Wed, 9 Sep 2020 19:10:54 +1000 Subject: [PATCH] Issue #3078501 by sd9121, swatichouhan012, Tom Konda, larowlan, longwave: The 2nd parameter is not defined on window.alert() but use in Drupal.AjaxCommands.prototype.alert() --- core/misc/ajax.es6.js | 2 +- core/misc/ajax.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/core/misc/ajax.es6.js b/core/misc/ajax.es6.js index 6c1ff29848d1..a108a83b5e7a 100644 --- a/core/misc/ajax.es6.js +++ b/core/misc/ajax.es6.js @@ -1346,7 +1346,7 @@ * The XMLHttpRequest status. */ alert(ajax, response, status) { - window.alert(response.text, response.title); + window.alert(response.text); }, /** diff --git a/core/misc/ajax.js b/core/misc/ajax.js index 9135ae485c2e..c19b3f5f177f 100644 --- a/core/misc/ajax.js +++ b/core/misc/ajax.js @@ -586,7 +586,7 @@ function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len } }, alert: function alert(ajax, response, status) { - window.alert(response.text, response.title); + window.alert(response.text); }, announce: function announce(ajax, response) { if (response.priority) { -- GitLab