Make WordPress Core

Changeset 32372


Ignore:
Timestamp:
05/06/2015 05:33:58 AM (11 years ago)
Author:
azaozz
Message:

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

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

Legend:

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

    r29317 r32372  
    102102                    '<img src="' + tinymce.Env.transparentSrc + '" data-wp-more="nextpage" class="wp-more-tag mce-wp-nextpage" ' +
    103103                        'title="' + title + '" data-mce-resize="false" data-mce-placeholder="1" />' );
     104            }
     105
     106            if ( e.content.indexOf( '<?"' ) !== -1 ) {
     107                e.content = e.content.replace( /<\?"/g, '' );
    104108            }
    105109        }
  • branches/4.0/src/wp-includes/version.php

    r32313 r32372  
    1919 * @global string $tinymce_version
    2020 */
    21 $tinymce_version = '4104-20140822';
     21$tinymce_version = '4104-20150505';
    2222
    2323/**
Note: See TracChangeset for help on using the changeset viewer.