Make WordPress Core

Opened 17 years ago

Closed 17 years ago

#5643 closed defect (bug) (fixed)

typo in get_theme_data

Reported by: xknown's profile xknown Owned by: westi's profile westi
Milestone: 2.5 Priority: low
Severity: minor Version: 2.5
Component: General Keywords: commit
Focuses: 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 (1)

5643.diff (462 bytes) - added by xknown 17 years ago.

Download all attachments as: .zip

Change History (3)

@xknown
17 years ago

#1 @westi
17 years ago

  • Keywords commit added
  • Owner changed from anonymous to westi
  • Status changed from new to assigned

Good Catch!

#2 @westi
17 years ago

  • Resolution set to fixed
  • Status changed from assigned to closed

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

Note: See TracTickets for help on using tickets.