Make WordPress Core

Changeset 32371


Ignore:
Timestamp:
05/06/2015 05:32:41 AM (9 years ago)
Author:
azaozz
Message:

TinyMCE: work-around a bug in the tags matching regex.
For 4.1.

Location:
branches/4.1/src/wp-includes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • branches/4.1/src/wp-includes/js/tinymce/plugins/wordpress/plugin.js

    r30757 r32371  
    106106                    '<img src="' + tinymce.Env.transparentSrc + '" data-wp-more="nextpage" class="wp-more-tag mce-wp-nextpage" ' +
    107107                        'title="' + title + '" data-mce-resize="false" data-mce-placeholder="1" />' );
     108            }
     109
     110            if ( e.content.indexOf( '<?"' ) !== -1 ) {
     111                e.content = e.content.replace( /<\?"/g, '' );
    108112            }
    109113        }
  • branches/4.1/src/wp-includes/version.php

    r32312 r32371  
    1919 * @global string $tinymce_version
    2020 */
    21 $tinymce_version = '4107-20150118';
     21$tinymce_version = '4107-20150505';
    2222
    2323/**
Note: See TracChangeset for help on using the changeset viewer.