Skip to:
Content

BuddyPress.org

Changeset 1721


Ignore:
Timestamp:
08/28/2009 06:12:55 PM (17 years ago)
Author:
apeatling
Message:

Fixing missing HTML title data.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-core.php

    r1718 r1721  
    576576        $item_css_id = $slug;
    577577   
    578     $bp->bp_options_nav[$parent_slug][] = array(
     578    $bp->bp_options_nav[$parent_slug][$slug] = array(
    579579        'name' => $name,
    580580        'link' => $parent_url . $slug . '/',
  • trunk/bp-core/bp-core-templatetags.php

    r1719 r1721  
    487487        } else if ( is_tag() ) {
    488488            $title = __( 'Blog — Tags — ' . ucwords( $wp_query->query_vars['tag'] ), 'buddypress' );               
    489         } else {
     489        } else
    490490            $title = __( 'Blog', 'buddypress' );
    491         }
     491
    492492    } else if ( !empty( $bp->displayed_user->fullname ) ) {
    493493        $title = strip_tags( $bp->displayed_user->fullname . ' — ' . ucwords( $bp->current_component ) . ' — ' . $bp->bp_options_nav[$bp->current_component][$bp->current_action]['name'] );
Note: See TracChangeset for help on using the changeset viewer.