TinyMCE: remove <address> from the block formats drop-down. Props avryl, mor10. Fixes #30132.

Built from https://develop.svn.wordpress.org/trunk@30733


git-svn-id: http://core.svn.wordpress.org/trunk@30723 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Andrew Ozz 2014-12-03 20:31:24 +00:00
parent f5697a4d62
commit f1385e4031
2 changed files with 10 additions and 1 deletions

View File

@ -490,6 +490,15 @@ final class _WP_Editors {
],
strikethrough: {inline: 'del'}
}",
'block_formats' =>
'Paragraph=p;' .
'Pre=pre;' .
'Heading 1=h1;' .
'Heading 2=h2;' .
'Heading 3=h3;' .
'Heading 4=h4;' .
'Heading 5=h5;' .
'Heading 6=h6',
'relative_urls' => false,
'remove_script_host' => false,
'convert_urls' => false,

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '4.1-beta2-30732';
$wp_version = '4.1-beta2-30733';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.