From f1d41cb830946f9bd235e934aad71fc81e54decd Mon Sep 17 00:00:00 2001 From: Peter Westwood Date: Fri, 11 Jan 2008 18:35:34 +0000 Subject: [PATCH] Add missing brace. Fixes #5643 props xknown. git-svn-id: https://develop.svn.wordpress.org/trunk@6598 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/theme.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/theme.php b/wp-includes/theme.php index a8e8767a79..6cef26f8b6 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -83,7 +83,7 @@ function get_theme_data( $theme_file ) { $author_uti = ''; if ( preg_match( '|Template:(.*)$|mi', $theme_data, $template ) ) - $template = wp_kses( trim( $template[1], $themes_allowed_tags ) ); + $template = wp_kses( trim( $template[1] ), $themes_allowed_tags ); else $template = '';