PressThis TinyMCE: set 'directionality' and add the LTR button when in RTL. Fixes #31474.
Built from https://develop.svn.wordpress.org/trunk@31580 git-svn-id: http://core.svn.wordpress.org/trunk@31561 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
03a50ce509
commit
848cd46e9a
|
@ -175,6 +175,7 @@ add_filter( 'option_blog_charset', '_canonical_charset' );
|
||||||
add_filter( 'option_home', '_config_wp_home' );
|
add_filter( 'option_home', '_config_wp_home' );
|
||||||
add_filter( 'option_siteurl', '_config_wp_siteurl' );
|
add_filter( 'option_siteurl', '_config_wp_siteurl' );
|
||||||
add_filter( 'tiny_mce_before_init', '_mce_set_direction' );
|
add_filter( 'tiny_mce_before_init', '_mce_set_direction' );
|
||||||
|
add_filter( 'teeny_mce_before_init', '_mce_set_direction' );
|
||||||
add_filter( 'pre_kses', 'wp_pre_kses_less_than' );
|
add_filter( 'pre_kses', 'wp_pre_kses_less_than' );
|
||||||
add_filter( 'sanitize_title', 'sanitize_title_with_dashes', 10, 3 );
|
add_filter( 'sanitize_title', 'sanitize_title_with_dashes', 10, 3 );
|
||||||
add_action( 'check_comment_flood', 'check_comment_flood_db', 10, 3 );
|
add_action( 'check_comment_flood', 'check_comment_flood_db', 10, 3 );
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '4.2-alpha-31579';
|
$wp_version = '4.2-alpha-31580';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue