Skip to:
Content

BuddyPress.org

Ticket #2554: 2554.001.patch

File 2554.001.patch, 722 bytes (added by r-a-y, 15 years ago)
  • buddypress/bp-core/bp-core-templatetags.php

     
    15171517}
    15181518
    15191519function bp_is_activity_front_page() {
    1520         return ( 'page' == get_option('show_on_front') && 'activity' == get_option('page_on_front') && $_SERVER['REQUEST_URI'] == bp_core_get_site_path() );
     1520        if ( bp_core_is_multisite() ) {
     1521                global $current_blog;   
     1522                $path = $current_blog->path;
     1523        }
     1524        else
     1525                $path = bp_core_get_site_path();
     1526
     1527        return ( 'page' == get_option('show_on_front') && 'activity' == get_option('page_on_front') && $_SERVER['REQUEST_URI'] == $path );
    15211528}
    15221529
    15231530function bp_is_directory() {