Block Editor: Remove some errant debugging included in [43815].

Props bordoni.
See #45037.


Built from https://develop.svn.wordpress.org/branches/5.0@43816


git-svn-id: http://core.svn.wordpress.org/branches/5.0@43645 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Gary Pendergast 2018-10-24 09:00:39 +00:00
parent dde5487499
commit 0b98b31c1f
2 changed files with 2 additions and 3 deletions

View File

@ -187,8 +187,7 @@ $styles = array(
if ( $editor_styles && current_theme_supports( 'editor-styles' ) ) {
foreach ( $editor_styles as $style ) {
if ( preg_match( '~^(https?:)?//~', $style ) ) {
//$response = wp_remote_get( $style );
var_dump( $response );
$response = wp_remote_get( $style );
if ( ! is_wp_error( $response ) ) {
$styles[] = array(
'css' => wp_remote_retrieve_body( $response ),

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-alpha-43815';
$wp_version = '5.0-alpha-43816';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.