Make WordPress Core

Opened 11 years ago

Closed 11 years ago

#25288 closed defect (bug) (fixed)

Broken markup when searching for installed themes

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

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 11 years ago.

Download all attachments as: .zip

Change History (5)

#1 @SergeyBiryukov
11 years ago

25288.patch changes that to:

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

#2 @SergeyBiryukov
11 years ago

  • Keywords commit added

Styling is not affected.

#3 @nacin
11 years ago

Looks good.

#4 @SergeyBiryukov
11 years ago

  • Owner set to SergeyBiryukov
  • Resolution set to fixed
  • Status changed from new to closed

In 25369:

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

Note: See TracTickets for help on using tickets.