Opened 18 years ago
Closed 18 years ago
#5643 closed defect (bug) (fixed)
typo in get_theme_data
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| 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)
Change History (3)
Note: See
TracTickets for help on using
tickets.
Good Catch!