mirror of
https://github.com/WordPress/WordPress.git
synced 2025-01-03 15:08:10 +01:00
KSES: Conditionally remove the <form>
element from $allowedposttags
.
To avoid backwards compatibility issues, `<form>` is re-added if a custom filter has added the `<input>` or `<select>` elements to `$allowedposttags`. Merges [43994] to trunk. Built from https://develop.svn.wordpress.org/trunk@44293 git-svn-id: http://core.svn.wordpress.org/trunk@44123 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
3af00578e4
commit
164452f942
@ -187,15 +187,6 @@ if ( ! CUSTOM_TAGS ) {
|
|||||||
'lang' => true,
|
'lang' => true,
|
||||||
'xml:lang' => true,
|
'xml:lang' => true,
|
||||||
),
|
),
|
||||||
'form' => array(
|
|
||||||
'action' => true,
|
|
||||||
'accept' => true,
|
|
||||||
'accept-charset' => true,
|
|
||||||
'enctype' => true,
|
|
||||||
'method' => true,
|
|
||||||
'name' => true,
|
|
||||||
'target' => true,
|
|
||||||
),
|
|
||||||
'h1' => array(
|
'h1' => array(
|
||||||
'align' => true,
|
'align' => true,
|
||||||
),
|
),
|
||||||
@ -824,6 +815,7 @@ function wp_kses_one_attr( $string, $element ) {
|
|||||||
* Returns an array of allowed HTML tags and attributes for a given context.
|
* Returns an array of allowed HTML tags and attributes for a given context.
|
||||||
*
|
*
|
||||||
* @since 3.5.0
|
* @since 3.5.0
|
||||||
|
* @since 5.0.1 `form` removed as allowable HTML tag.
|
||||||
*
|
*
|
||||||
* @global array $allowedposttags
|
* @global array $allowedposttags
|
||||||
* @global array $allowedtags
|
* @global array $allowedtags
|
||||||
@ -852,7 +844,27 @@ function wp_kses_allowed_html( $context = '' ) {
|
|||||||
switch ( $context ) {
|
switch ( $context ) {
|
||||||
case 'post':
|
case 'post':
|
||||||
/** This filter is documented in wp-includes/kses.php */
|
/** This filter is documented in wp-includes/kses.php */
|
||||||
return apply_filters( 'wp_kses_allowed_html', $allowedposttags, $context );
|
$tags = apply_filters( 'wp_kses_allowed_html', $allowedposttags, $context );
|
||||||
|
|
||||||
|
// 5.0.1 removed the `<form>` tag, allow it if a filter is allowing it's sub-elements `<input>` or `<select>`.
|
||||||
|
if ( ! CUSTOM_TAGS && ! isset( $tags['form'] ) && ( isset( $tags['input'] ) || isset( $tags['select'] ) ) ) {
|
||||||
|
$tags = $allowedposttags;
|
||||||
|
|
||||||
|
$tags['form'] = array(
|
||||||
|
'action' => true,
|
||||||
|
'accept' => true,
|
||||||
|
'accept-charset' => true,
|
||||||
|
'enctype' => true,
|
||||||
|
'method' => true,
|
||||||
|
'name' => true,
|
||||||
|
'target' => true,
|
||||||
|
);
|
||||||
|
|
||||||
|
/** This filter is documented in wp-includes/kses.php */
|
||||||
|
$tags = apply_filters( 'wp_kses_allowed_html', $tags, $context );
|
||||||
|
}
|
||||||
|
|
||||||
|
return $tags;
|
||||||
|
|
||||||
case 'user_description':
|
case 'user_description':
|
||||||
case 'pre_user_description':
|
case 'pre_user_description':
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '5.1-alpha-44292';
|
$wp_version = '5.1-alpha-44293';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
Loading…
Reference in New Issue
Block a user