Opened 18 years ago
Closed 18 years ago
#3866 closed defect (bug) (fixed)
Theme URI not returned by get_theme_data
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 2.2 | Priority: | normal |
Severity: | minor | Version: | 2.1.1 |
Component: | Template | Keywords: | has-patch commit |
Focuses: | Cc: |
Description
It's getting grabbed from the style.css but it's not in the return array.
return array( 'Name' => $name, 'Title' => $theme, 'Description' => $description, 'Author' => $author, 'Version' => $version, 'Template' => $template[1], 'Status' => $status );
should be:
return array( 'Name' => $name, 'URI' => trim($theme_uri[1]), 'Title' => $theme, 'Description' => $description, 'Author' => $author, 'Version' => $version, 'Template' => $template[1], 'Status' => $status );
Attachments (1)
Change History (8)
#3
@
18 years ago
- Resolution fixed deleted
- Status changed from closed to reopened
Wrong bug num. Reopen.
Note: See
TracTickets for help on using
tickets.
Patch based on given code attached.