Plugin Directory

Changeset 1713258


Ignore:
Timestamp:
08/14/2017 04:08:05 PM (9 years ago)
Author:
rigorousrich
Message:

Changes to make the plugin compatible with latest versions of WP

File:
1 edited

Legend:

Unmodified
Added
Removed
  • dovetail/trunk/classes/class.admin-edit-menu-walker.php

    r874081 r1713258  
    1717 * @param string $output Passed by reference.
    1818 */
    19 function start_lvl(&$output) {}
     19function start_lvl( &$output, $depth = 0, $args = array() ) {}
    2020
    2121/**
     
    2525 * @param string $output Passed by reference.
    2626 */
    27 function end_lvl(&$output) {
     27function end_lvl( &$output, $depth = 0, $args = array() ) {
    2828}
    2929
     
    3737 * @param object $args
    3838 */
    39 function start_el(&$output, $item, $depth, $args) {
     39function start_el( &$output, $item, $depth = 0, $args = array(), $id = 0 ) {
    4040    global $_wp_nav_menu_max_depth;
    4141    $_wp_nav_menu_max_depth = $depth > $_wp_nav_menu_max_depth ? $depth : $_wp_nav_menu_max_depth;
Note: See TracChangeset for help on using the changeset viewer.