From b7d25c00e2aae17af8c46383d295e042780da93f Mon Sep 17 00:00:00 2001 From: Helen Hou-Sandi Date: Tue, 21 Apr 2015 14:22:15 +0000 Subject: [PATCH] Rename the `pre_wp_prepare_themes_for_js` filter to `pre_prepare_themes_for_js`. props DrewAPicture. fixes #31789. git-svn-id: https://develop.svn.wordpress.org/trunk@32246 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-admin/includes/theme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wp-admin/includes/theme.php b/src/wp-admin/includes/theme.php index a8c1fc0d50..47070cc756 100644 --- a/src/wp-admin/includes/theme.php +++ b/src/wp-admin/includes/theme.php @@ -421,7 +421,7 @@ function wp_prepare_themes_for_js( $themes = null ) { * @param null|array $themes An array of WP_Theme objects to prepare, if any. * @param string $current_theme The current theme slug. */ - $prepared_themes = (array) apply_filters( 'pre_wp_prepare_themes_for_js', array(), $themes, $current_theme ); + $prepared_themes = (array) apply_filters( 'pre_prepare_themes_for_js', array(), $themes, $current_theme ); if ( ! empty( $prepared_themes ) ) { return $prepared_themes;