mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-22 17:18:32 +01:00
Security: Rename new wp.sanitize.sanitizeText
to stripTagsAndEncodeText
.'
Improve function naming: this function strips tags from a string and also encodes any HTML entities. Props ocean90. Fixes #40635. Built from https://develop.svn.wordpress.org/trunk@41745 git-svn-id: http://core.svn.wordpress.org/trunk@41579 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
37ec288f71
commit
eb3b3fec1d
@ -32,7 +32,7 @@
|
||||
*
|
||||
* @return Sanitized text. False on failure.
|
||||
*/
|
||||
sanitizeText: function( text ) {
|
||||
stripTagsAndEncodeText: function( text ) {
|
||||
var _text = wp.sanitize.stripTags( text ),
|
||||
textarea = document.createElement( 'textarea' );
|
||||
|
||||
|
2
wp-includes/js/wp-sanitize.min.js
vendored
2
wp-includes/js/wp-sanitize.min.js
vendored
@ -1 +1 @@
|
||||
!function(){window.wp=window.wp||{},wp.sanitize={stripTags:function(a){return a=a||"",a.replace(/<!--[\s\S]*?(-->|$)/g,"").replace(/<(script|style)[^>]*>[\s\S]*?(<\/\1>|$)/gi,"").replace(/<\/?[a-z][\s\S]*?(>|$)/gi,"")},sanitizeText:function(a){var b=wp.sanitize.stripTags(a),c=document.createElement("textarea");try{c.innerHTML=b,b=wp.sanitize.stripTags(c.value)}catch(d){}return b}}}();
|
||||
!function(){window.wp=window.wp||{},wp.sanitize={stripTags:function(a){return a=a||"",a.replace(/<!--[\s\S]*?(-->|$)/g,"").replace(/<(script|style)[^>]*>[\s\S]*?(<\/\1>|$)/gi,"").replace(/<\/?[a-z][\s\S]*?(>|$)/gi,"")},stripTagsAndEncodeText:function(a){var b=wp.sanitize.stripTags(a),c=document.createElement("textarea");try{c.innerHTML=b,b=wp.sanitize.stripTags(c.value)}catch(d){}return b}}}();
|
@ -4,7 +4,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '4.9-alpha-41744';
|
||||
$wp_version = '4.9-alpha-41745';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
Loading…
Reference in New Issue
Block a user