From 72c903724874ad2a5175caeab2c314644c2b99c6 Mon Sep 17 00:00:00 2001 From: atimmer Date: Thu, 18 Oct 2018 13:27:26 +0000 Subject: [PATCH] Script loading: Fix a PHP error introduced in [43753]. See #45065. Props swissspidy. Built from https://develop.svn.wordpress.org/branches/5.0@43754 git-svn-id: http://core.svn.wordpress.org/branches/5.0@43583 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/class-wp-editor.php | 2 +- wp-includes/version.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wp-includes/class-wp-editor.php b/wp-includes/class-wp-editor.php index 38117c4d71..2de6e97a73 100644 --- a/wp-includes/class-wp-editor.php +++ b/wp-includes/class-wp-editor.php @@ -1425,7 +1425,7 @@ final class _WP_Editors { script_concat_settings(); } - wp_print_scripts( [ 'wp-tinymce' ] ); + wp_print_scripts( array( 'wp-tinymce' ) ); echo "\n"; } diff --git a/wp-includes/version.php b/wp-includes/version.php index 896d2b07b4..686959d60f 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '5.0-alpha-43753'; +$wp_version = '5.0-alpha-43754'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.