Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Weblate
Framaforms
Commits
a8121241
Commit
a8121241
authored
Sep 18, 2020
by
theo lem
☕
Browse files
Merge branch 'drupal-7-73-update' into 'master'
Drupal 7.73 See merge request framasoft/framaforms!62
parents
04a5fb65
dd789f48
Changes
136
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.txt
View file @
a8121241
Drupal 7.73, 2020-09-16
-----------------------
- Fixed security issues:
- SA-CORE-2020-007
Drupal 7.72, 2020-06-17
-----------------------
- Fixed security issues:
...
...
includes/bootstrap.inc
View file @
a8121241
...
...
@@ -8,7 +8,7 @@
/**
* The current system version.
*/
define
(
'VERSION'
,
'7.7
2
'
);
define
(
'VERSION'
,
'7.7
3
'
);
/**
* Core API compatibility.
...
...
misc/ajax.js
View file @
a8121241
...
...
@@ -149,7 +149,7 @@ Drupal.ajax = function (base, element, element_settings) {
// The 'this' variable will not persist inside of the options object.
var
ajax
=
this
;
ajax
.
options
=
{
url
:
ajax
.
url
,
url
:
Drupal
.
sanitizeAjaxUrl
(
ajax
.
url
)
,
data
:
ajax
.
submit
,
beforeSerialize
:
function
(
element_settings
,
options
)
{
return
ajax
.
beforeSerialize
(
element_settings
,
options
);
...
...
@@ -195,6 +195,7 @@ Drupal.ajax = function (base, element, element_settings) {
}
},
dataType
:
'
json
'
,
jsonp
:
false
,
type
:
'
POST
'
};
...
...
misc/autocomplete.js
View file @
a8121241
...
...
@@ -297,8 +297,9 @@ Drupal.ACDB.prototype.search = function (searchString) {
// encodeURIComponent to allow autocomplete search terms to contain slashes.
$
.
ajax
({
type
:
'
GET
'
,
url
:
db
.
uri
+
'
/
'
+
Drupal
.
encodePath
(
searchString
),
url
:
Drupal
.
sanitizeAjaxUrl
(
db
.
uri
+
'
/
'
+
Drupal
.
encodePath
(
searchString
)
)
,
dataType
:
'
json
'
,
jsonp
:
false
,
success
:
function
(
matches
)
{
if
(
typeof
matches
.
status
==
'
undefined
'
||
matches
.
status
!=
0
)
{
db
.
cache
[
searchString
]
=
matches
;
...
...
misc/drupal.js
View file @
a8121241
...
...
@@ -424,6 +424,23 @@ Drupal.urlIsLocal = function (url) {
return
absoluteUrl
===
baseUrl
||
absoluteUrl
.
indexOf
(
baseUrl
+
'
/
'
)
===
0
;
};
/**
* Sanitizes a URL for use with jQuery.ajax().
*
* @param url
* The URL string to be sanitized.
*
* @return
* The sanitized URL.
*/
Drupal
.
sanitizeAjaxUrl
=
function
(
url
)
{
var
regex
=
/
\=\?(
&|$
)
/
;
while
(
url
.
match
(
regex
))
{
url
=
url
.
replace
(
regex
,
''
);
}
return
url
;
}
/**
* Generate the themed representation of a Drupal object.
*
...
...
modules/aggregator/aggregator.info
View file @
a8121241
...
...
@@ -7,7 +7,7 @@ files[] = aggregator.test
configure
=
admin
/
config
/
services
/
aggregator
/
settings
stylesheets
[
all
][]
=
aggregator
.
css
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
6
-
1
7
version
=
"7.7
2
"
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
9
-
1
6
version
=
"7.7
3
"
project
=
"drupal"
datestamp
=
"1
592419104
"
datestamp
=
"1
600272641
"
modules/aggregator/tests/aggregator_test.info
View file @
a8121241
...
...
@@ -5,7 +5,7 @@ version = VERSION
core
=
7.
x
hidden
=
TRUE
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
6
-
1
7
version
=
"7.7
2
"
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
9
-
1
6
version
=
"7.7
3
"
project
=
"drupal"
datestamp
=
"1
592419104
"
datestamp
=
"1
600272641
"
modules/block/block.info
View file @
a8121241
...
...
@@ -6,7 +6,7 @@ core = 7.x
files
[]
=
block
.
test
configure
=
admin
/
structure
/
block
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
6
-
1
7
version
=
"7.7
2
"
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
9
-
1
6
version
=
"7.7
3
"
project
=
"drupal"
datestamp
=
"1
592419104
"
datestamp
=
"1
600272641
"
modules/block/tests/block_test.info
View file @
a8121241
...
...
@@ -5,7 +5,7 @@ version = VERSION
core
=
7.
x
hidden
=
TRUE
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
6
-
1
7
version
=
"7.7
2
"
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
9
-
1
6
version
=
"7.7
3
"
project
=
"drupal"
datestamp
=
"1
592419104
"
datestamp
=
"1
600272641
"
modules/block/tests/themes/block_test_theme/block_test_theme.info
View file @
a8121241
...
...
@@ -13,7 +13,7 @@ regions[footer] = Footer
regions[highlighted] = Highlighted
regions[help] = Help
; Information added by Drupal.org packaging script on 2020-0
6
-1
7
version = "7.7
2
"
; Information added by Drupal.org packaging script on 2020-0
9
-1
6
version = "7.7
3
"
project = "drupal"
datestamp = "1
592419104
"
datestamp = "1
600272641
"
modules/blog/blog.info
View file @
a8121241
...
...
@@ -5,7 +5,7 @@ version = VERSION
core
=
7.
x
files
[]
=
blog
.
test
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
6
-
1
7
version
=
"7.7
2
"
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
9
-
1
6
version
=
"7.7
3
"
project
=
"drupal"
datestamp
=
"1
592419104
"
datestamp
=
"1
600272641
"
modules/book/book.info
View file @
a8121241
...
...
@@ -7,7 +7,7 @@ files[] = book.test
configure
=
admin
/
content
/
book
/
settings
stylesheets
[
all
][]
=
book
.
css
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
6
-
1
7
version
=
"7.7
2
"
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
9
-
1
6
version
=
"7.7
3
"
project
=
"drupal"
datestamp
=
"1
592419104
"
datestamp
=
"1
600272641
"
modules/color/color.info
View file @
a8121241
...
...
@@ -5,7 +5,7 @@ version = VERSION
core
=
7.
x
files
[]
=
color
.
test
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
6
-
1
7
version
=
"7.7
2
"
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
9
-
1
6
version
=
"7.7
3
"
project
=
"drupal"
datestamp
=
"1
592419104
"
datestamp
=
"1
600272641
"
modules/comment/comment.info
View file @
a8121241
...
...
@@ -9,7 +9,7 @@ files[] = comment.test
configure
=
admin
/
content
/
comment
stylesheets
[
all
][]
=
comment
.
css
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
6
-
1
7
version
=
"7.7
2
"
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
9
-
1
6
version
=
"7.7
3
"
project
=
"drupal"
datestamp
=
"1
592419104
"
datestamp
=
"1
600272641
"
modules/contact/contact.info
View file @
a8121241
...
...
@@ -6,7 +6,7 @@ core = 7.x
files
[]
=
contact
.
test
configure
=
admin
/
structure
/
contact
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
6
-
1
7
version
=
"7.7
2
"
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
9
-
1
6
version
=
"7.7
3
"
project
=
"drupal"
datestamp
=
"1
592419104
"
datestamp
=
"1
600272641
"
modules/contextual/contextual.info
View file @
a8121241
...
...
@@ -5,7 +5,7 @@ version = VERSION
core
=
7.
x
files
[]
=
contextual
.
test
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
6
-
1
7
version
=
"7.7
2
"
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
9
-
1
6
version
=
"7.7
3
"
project
=
"drupal"
datestamp
=
"1
592419104
"
datestamp
=
"1
600272641
"
modules/dashboard/dashboard.info
View file @
a8121241
...
...
@@ -7,7 +7,7 @@ files[] = dashboard.test
dependencies
[]
=
block
configure
=
admin
/
dashboard
/
customize
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
6
-
1
7
version
=
"7.7
2
"
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
9
-
1
6
version
=
"7.7
3
"
project
=
"drupal"
datestamp
=
"1
592419104
"
datestamp
=
"1
600272641
"
modules/dblog/dblog.info
View file @
a8121241
...
...
@@ -5,7 +5,7 @@ version = VERSION
core
=
7.
x
files
[]
=
dblog
.
test
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
6
-
1
7
version
=
"7.7
2
"
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
9
-
1
6
version
=
"7.7
3
"
project
=
"drupal"
datestamp
=
"1
592419104
"
datestamp
=
"1
600272641
"
modules/field/field.info
View file @
a8121241
...
...
@@ -11,7 +11,7 @@ dependencies[] = field_sql_storage
required
=
TRUE
stylesheets
[
all
][]
=
theme
/
field
.
css
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
6
-
1
7
version
=
"7.7
2
"
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
9
-
1
6
version
=
"7.7
3
"
project
=
"drupal"
datestamp
=
"1
592419104
"
datestamp
=
"1
600272641
"
modules/field/modules/field_sql_storage/field_sql_storage.info
View file @
a8121241
...
...
@@ -7,7 +7,7 @@ dependencies[] = field
files
[]
=
field_sql_storage
.
test
required
=
TRUE
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
6
-
1
7
version
=
"7.7
2
"
;
Information
added
by
Drupal
.
org
packaging
script
on
2020
-
0
9
-
1
6
version
=
"7.7
3
"
project
=
"drupal"
datestamp
=
"1
592419104
"
datestamp
=
"1
600272641
"
Prev
1
2
3
4
5
…
7
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment