Add missing brace. Fixes #5643 props xknown.

git-svn-id: https://develop.svn.wordpress.org/trunk@6598 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Peter Westwood 2008-01-11 18:35:34 +00:00
parent 3a11dc94c0
commit f1d41cb830
1 changed files with 1 additions and 1 deletions

View File

@ -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 = '';