Changeset 4723
- Timestamp:
- 01/12/2007 03:54:22 AM (19 years ago)
- Location:
- trunk/wp-includes
- Files:
-
- 2 edited
-
classes.php (modified) (1 diff)
-
post-template.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/classes.php
r4656 r4723 499 499 } 500 500 501 function start_el($output, $page, $depth, $current_page, $ show_date, $date_format) {501 function start_el($output, $page, $depth, $current_page, $args) { 502 502 if ( $depth ) 503 503 $indent = str_repeat("\t", $depth); 504 504 extract($args); 505 505 $css_class = 'page_item'; 506 506 $_current_page = get_page( $current_page ); -
trunk/wp-includes/post-template.php
r4682 r4723 290 290 global $wp_query; 291 291 $current_page = $wp_query->get_queried_object_id(); 292 $output .= walk_page_tree($pages, $r['depth'], $current_page, $r ['show_date'], $r['date_format']);292 $output .= walk_page_tree($pages, $r['depth'], $current_page, $r); 293 293 294 294 if ( $r['title_li'] )
Note: See TracChangeset
for help on using the changeset viewer.