Make WordPress Core

Opened 20 years ago

Closed 20 years ago

#2635 closed defect (bug) (worksforme)

edit-pages.php paging cuts off children

Reported by: skeltoac's profile skeltoac Owned by:
Milestone: Priority: normal
Severity: major Version: 2.0.2
Component: Administration Keywords:
Focuses: Cc:

Description

Write 11 pages, followed by one with 6 children. Paging cuts off the last of the children, making them impossible to find except by Search.

Change History (4)

#1 @skeltoac
20 years ago

  • Milestone set to 2.1

#2 @ryan
20 years ago

All children should be cut off. Do they think I'm made of money? No, you can't have the latest iPod.

#3 @matt
20 years ago

  • Milestone changed from 2.1 to 2.2

#4 @markjaquith
20 years ago

  • Milestone 2.2 deleted
  • Resolution set to worksforme
  • Status changed from new to closed

Not an issue for 2.1 or 2.0.5... they're both querying all pages.

2.1:

SELECT   wp_posts.* FROM wp_posts  WHERE 1=1  AND (post_type = 'page' AND (post_status = 'publish' OR post_status = 'future' OR post_status = 'draft' OR post_status = 'private'))  ORDER BY menu_order DESC

2.0.5:

SELECT * FROM wp_posts WHERE post_status = 'static'
Note: See TracTickets for help on using tickets.