Make WordPress Core

Opened 17 years ago

Closed 17 years ago

#6264 closed defect (bug) (fixed)

Alternate highlighting doesn't extend all way down a list of posts

Reported by: johnhennmacc's profile johnhennmacc Owned by:
Milestone: 2.5 Priority: normal
Severity: normal Version: 2.5
Component: Administration Keywords:
Focuses: Cc:

Description

20 posts at a time are now listed on the Manage Posts page rather than 16 as before and The result is that the alternation of row background colours only extends part way down the table (a darker background makes it more obvious).

One way to fix it is to change line 27 in wp-admin/edit-post-rows from the following:

$class = ( $i_post > 15
'alternate' == $class) ? : 'alternate';

to:

$class = ( $i_post > 19
'alternate' == $class) ? : 'alternate';

Attachments (1)

6264.diff (2.8 KB) - added by mdawaffe 17 years ago.

Download all attachments as: .zip

Change History (5)

#1 @ryan
17 years ago

This is left over from the continuous editing feature that no longer applies. I'll change to query 15 posts and get rid of the no longer needed add-post AJAX action.

#2 @ryan
17 years ago

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

(In [7352]) Display 15 posts. Remove no longer needed add-post AJAX action. Props johnhennmacc. fixes #6264

#3 @mdawaffe
17 years ago

  • Resolution fixed deleted
  • Status changed from closed to reopened

6264.diff removes some other remnants of the old infinite posts feature.

@mdawaffe
17 years ago

#4 @ryan
17 years ago

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

(In [7359]) Remove remnants of infinite posts features. Props mdawaffe. fixes #6264

Note: See TracTickets for help on using tickets.