diff options
author | David Rothstein <drothstein@gmail.com> | 2014-07-16 16:08:05 -0400 |
---|---|---|
committer | David Rothstein <drothstein@gmail.com> | 2014-07-16 16:08:05 -0400 |
commit | 3310afeb856564d2bc0c03512566bff60029d7be (patch) | |
tree | 3daebf4b2b5965c66e93180d31338439a6a76625 /misc | |
parent | 338e2d4db78cc346a7491b54537b4120f53a8da2 (diff) | |
parent | 83b80acad8431fcd56e9a331ba06c41edee48c91 (diff) | |
download | brdo-3310afeb856564d2bc0c03512566bff60029d7be.tar.gz brdo-3310afeb856564d2bc0c03512566bff60029d7be.tar.bz2 |
Merge tag '7.29' into 7.x
7.29 release
Conflicts:
includes/bootstrap.inc
Diffstat (limited to 'misc')
-rw-r--r-- | misc/ajax.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/ajax.js b/misc/ajax.js index 29483b498..3b9dec614 100644 --- a/misc/ajax.js +++ b/misc/ajax.js @@ -348,7 +348,7 @@ Drupal.ajax.prototype.beforeSend = function (xmlhttprequest, options) { // this is only needed for IFRAME submissions. var v = $.fieldValue(this.element); if (v !== null) { - options.extraData[this.element.name] = v; + options.extraData[this.element.name] = Drupal.checkPlain(v); } } |