Make WordPress Core


Ignore:
Timestamp:
01/12/2007 03:54:22 AM (19 years ago)
Author:
ryan
Message:

Pass all args to the page walker.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/classes.php

    r4656 r4723  
    499499    }
    500500
    501     function start_el($output, $page, $depth, $current_page, $show_date, $date_format) {
     501    function start_el($output, $page, $depth, $current_page, $args) {
    502502        if ( $depth )
    503503            $indent = str_repeat("\t", $depth);
    504 
     504        extract($args);
    505505        $css_class = 'page_item';
    506506        $_current_page = get_page( $current_page );
Note: See TracChangeset for help on using the changeset viewer.