• Resolved greaterweb

    (@greaterweb)


    Received the following error:

    Warning: Missing argument 2 for bcn_breadcrumb_trail::page_parents(), called in /wordpress_path/wp-content/plugins/breadcrumb-navxt/breadcrumb_navxt_class.php on line 249 and defined in /wordpress_path/wp/wp-content/plugins/breadcrumb-navxt/breadcrumb_navxt_class.php on line 309

    Path above substituted with “wordpress_path”.

    Line 249 is:

    //Place the rest of the page hierachy
    $this->page_parents($bcn_parent_id);

    Should probably be:

    $bcn_frontpage = get_option('page_on_front');
    //Place the rest of the page hierachy
    $this->page_parents($bcn_parent_id, $bcn_frontpage);

    Home this helps.

    Thanks for a great plugin!

Viewing 1 replies (of 1 total)
  • Yes, good catch, that should have been updated. I changed the workings on page_parents from the original (to reduce DB queries) and must have missed that call to it. It’ll be in 3.0.1 released later this month (It’s in the SVN trunk right now).

Viewing 1 replies (of 1 total)

The topic ‘[Plugin: Breadcrumb NavXT] v3 error – page attachment’ is closed to new replies.