Make WordPress Core

Ticket #5373: post-php.diff

File post-php.diff, 266 bytes (added by wlindley, 17 years ago)

So hierarchical defaults to 1 if include= not specified, and 0 if include is. Permit both options together.

Line 
11126c1126
2<               'sort_column' => 'post_title', 'hierarchical' => 1,
3---
4>               'sort_column' => 'post_title', 'hierarchical' => 2,
51146c1146
6<               $hierarchical = false;
7---
8>               if ($hierarchical == 1) $hierarchical = false;