Skip to content

Commit

Permalink
Plugin: Remove user_can_richedit filtering (#13608)
Browse files Browse the repository at this point in the history
  • Loading branch information
aduth committed Jan 30, 2019
1 parent b9e9aed commit 3fd2218
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions lib/client-assets.php
Original file line number Diff line number Diff line change
Expand Up @@ -893,13 +893,6 @@ function gutenberg_editor_scripts_and_styles( $hook ) {
'after'
);

// Ignore Classic Editor's `rich_editing` user option, aka "Disable visual
// editor". Forcing this to be true guarantees that TinyMCE and its plugins
// are available in Gutenberg. Fixes
// https://github.com/WordPress/gutenberg/issues/5667.
$user_can_richedit = user_can_richedit();
add_filter( 'user_can_richedit', '__return_true' );

wp_enqueue_script( 'wp-edit-post' );
wp_enqueue_script( 'wp-format-library' );
wp_enqueue_style( 'wp-format-library' );
Expand Down Expand Up @@ -1134,7 +1127,7 @@ function gutenberg_editor_scripts_and_styles( $hook ) {
'allowedMimeTypes' => get_allowed_mime_types(),
'styles' => $styles,
'imageSizes' => gutenberg_get_available_image_sizes(),
'richEditingEnabled' => $user_can_richedit,
'richEditingEnabled' => user_can_richedit(),

// Ideally, we'd remove this and rely on a REST API endpoint.
'postLock' => $lock_details,
Expand Down

0 comments on commit 3fd2218

Please sign in to comment.