Make WordPress Core


Ignore:
Timestamp:
01/04/2012 11:03:46 PM (13 years ago)
Author:
ryan
Message:

Clear strict notices for the walkers. fixes #19249

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/class-wp-walker.php

    r16101 r19679  
    5353     * @param string $output Passed by reference. Used to append additional content.
    5454     */
    55     function start_lvl(&$output) {}
     55    function start_lvl( &$output, $depth = 0, $args = array() ) {}
    5656
    5757    /**
     
    6767     * @param string $output Passed by reference. Used to append additional content.
    6868     */
    69     function end_lvl(&$output)   {}
     69    function end_lvl( &$output, $depth = 0, $args = array() )   {}
    7070
    7171    /**
     
    8181     * @param string $output Passed by reference. Used to append additional content.
    8282     */
    83     function start_el(&$output)  {}
     83    function start_el( &$output, $object, $depth, $args, $current_object_id = 0 )  {}
    8484
    8585    /**
     
    9494     * @param string $output Passed by reference. Used to append additional content.
    9595     */
    96     function end_el(&$output)    {}
     96    function end_el( &$output, $object, $depth = 0, $args = array() )    {}
    9797
    9898    /**
Note: See TracChangeset for help on using the changeset viewer.