Ticket #5643 (closed defect: fixed)

Opened 11 months ago

Last modified 11 months ago

typo in get_theme_data

Reported by: xknown Assigned to: westi
Priority: low Milestone: 2.5
Component: General Version: 2.5
Severity: minor Keywords: commit
Cc:

Description

From wp-includes/theme.php:

$template = wp_kses( trim( $template[1], $themes_allowed_tags ) );

Should be:

$template = wp_kses( trim( $template[1] ), $themes_allowed_tags );

Attachments

5643.diff (462 bytes) - added by xknown on 01/11/08 04:21:56.

Change History

01/11/08 04:21:56 changed by xknown

  • attachment 5643.diff added.

01/11/08 08:54:17 changed by westi

  • keywords set to commit.
  • owner changed from anonymous to westi.
  • status changed from new to assigned.

Good Catch!

01/11/08 18:35:35 changed by westi

  • status changed from assigned to closed.
  • resolution set to fixed.

(In [6598]) Add missing brace. Fixes #5643 props xknown.