Skip to content

Commit cf089c1

Browse files
Pantheon AutomationCdrMarks
Pantheon Automation
authored andcommitted
Update to Drupal 7.87. For more information, see https://www.drupal.org/project/drupal/releases/7.87
1 parent 8550617 commit cf089c1

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

CHANGELOG.txt

+4
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

+1-1
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

+3
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)