Make WordPress Core

Opened 13 years ago

Closed 13 years ago

#25288 closed defect (bug) (fixed)

Broken markup when searching for installed themes

Reported by: SergeyBiryukov Owned by: SergeyBiryukov
Priority: normal Milestone: 3.7
Component: Themes Version:
Severity: normal Keywords: has-patch commit
Cc: Focuses:

Description

  1. Go to Manage Themes screen.
  2. In "Search Installed Themes" input, search for a theme that doesn't exist.
  3. The resulting page would have a broken markup:
    <div id="availablethemes">
    	<tr class="no-items"><td class="colspanchange" colspan="0">No items found.</td></tr>
    </div>
    

Attachments (1)

25288.patch (583 bytes ) - added by SergeyBiryukov 13 years ago.

Download all attachments as: .zip

Change History (5)

#1 @SergeyBiryukov
13 years ago

25288.patch changes that to:

<div id="availablethemes">
	<div class="no-items">No items found.</div>
</div>

#2 @SergeyBiryukov
13 years ago

  • Keywords commit added

Styling is not affected.

#3 @nacin
13 years ago

Looks good.

#4 @SergeyBiryukov
13 years ago

  • Owner set to SergeyBiryukov
  • Resolutionfixed
  • Status newclosed

In 25369:

Fix invalid markup when searching for installed themes. fixes #25288.

Note: See TracTickets for help on using tickets.