Make WordPress Core

Ticket #41883: 41883.diff

File 41883.diff, 639 bytes (added by adamsilverstein, 7 years ago)
  • src/wp-includes/js/wp-sanitize.js

    diff --git src/wp-includes/js/wp-sanitize.js src/wp-includes/js/wp-sanitize.js
    index c03d163dac..8063c6b3f6 100644
     
    3333                 * @return Sanitized text. False on failure.
    3434                 */
    3535                sanitizeText: function( text ) {
    36                         var _text = wp.utils.stripTags( text ),
     36                        var _text = wp.sanitize.stripTags( text ),
    3737                                textarea = document.createElement( 'textarea' );
    3838
    3939                        try {
    4040                                textarea.innerHTML = _text;
    41                                 _text = wp.utils.stripTags( textarea.value );
     41                                _text = wp.sanitize.stripTags( textarea.value );
    4242                        } catch ( er ) {}
    4343
    4444                        return _text;