Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
06/06/2009 02:15:05 AM (15 years ago)
Author:
apeatling
Message:

Adding back missing nav item priorities.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/1.0/bp-core.php

    r1522 r1527  
    536536   
    537537    if ( function_exists($function) && $user_has_access && $bp->current_action == $slug && $bp->current_component == $parent_id )
    538         add_action( 'wp', $function );
     538        add_action( 'wp', $function, 3 );
    539539}
    540540
     
    593593    if ( $bp->current_component == $parent_id && !$bp->current_action ) {
    594594        if ( function_exists($function) ) {
    595             add_action( 'wp', $function );
     595            add_action( 'wp', $function, 3 );
    596596        }
    597597       
Note: See TracChangeset for help on using the changeset viewer.