From 3ced239517aa8f12ece64c46b5b1370d9f4b888b Mon Sep 17 00:00:00 2001 From: John Blackbourn Date: Wed, 18 Nov 2015 17:06:22 +0000 Subject: [PATCH] Correct the parameter type for the `$stylesheet` parameter in the `mce_css` filter documentation. Fixes #34721 Props hnle git-svn-id: https://develop.svn.wordpress.org/trunk@35660 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/class-wp-editor.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-includes/class-wp-editor.php b/src/wp-includes/class-wp-editor.php index 50e3b948ec..a6504d4ea9 100644 --- a/src/wp-includes/class-wp-editor.php +++ b/src/wp-includes/class-wp-editor.php @@ -572,7 +572,7 @@ final class _WP_Editors { * * @since 2.1.0 * - * @param array $stylesheets Comma-delimited list of stylesheets. + * @param string $stylesheets Comma-delimited list of stylesheets. */ $mce_css = trim( apply_filters( 'mce_css', implode( ',', $mce_css ) ), ' ,' );