Skip to content

Commit c81c424

Browse files
author
Pantheon Automation
committed
Update to Drupal 7.87. For more information, see https://www.drupal.org/project/drupal/releases/7.87
1 parent f2c0ba5 commit c81c424

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
Drupal 7.87, 2022-01-19
2+
-----------------------
3+
- Fix regression caused by jQuery UI position() backport
4+
15
Drupal 7.86, 2022-01-18
26
-----------------------
37
- Fixed security issues:

includes/bootstrap.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
/**
99
* The current system version.
1010
*/
11-
define('VERSION', '7.86');
11+
define('VERSION', '7.87');
1212

1313
/**
1414
* Core API compatibility.

misc/ui/jquery.ui.position-1.13.0-backport.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
var fnOriginalPosition = $.fn.position;
1717
$.fn.extend({
1818
'position': function (options) {
19+
if (typeof options === 'undefined') {
20+
return fnOriginalPosition.call(this);
21+
}
1922

2023
// Make sure string options are treated as CSS selectors
2124
var target = typeof options.of === "string" ?

0 commit comments

Comments
 (0)