Update WordPress to 5.2

This commit is contained in:
Oliver Davies 2019-05-08 08:05:39 +01:00
parent 489b5a5914
commit e00f87f2f5
599 changed files with 119573 additions and 55990 deletions

View file

@ -2062,6 +2062,7 @@ function safecss_filter_attr( $css, $deprecated = '' ) {
* @since 4.6.0 Added support for `list-style-type`.
* @since 5.0.0 Added support for `background-image`.
* @since 5.1.0 Added support for `text-transform`.
* @since 5.2.0 Added support for `background-position` and `grid-template-columns`
*
* @param string[] $attr Array of allowed CSS attributes.
*/
@ -2071,6 +2072,7 @@ function safecss_filter_attr( $css, $deprecated = '' ) {
'background',
'background-color',
'background-image',
'background-position',
'border',
'border-width',
@ -2138,6 +2140,7 @@ function safecss_filter_attr( $css, $deprecated = '' ) {
'overflow',
'vertical-align',
'list-style-type',
'grid-template-columns',
)
);