Ticket #2554: 2554.001.patch
File 2554.001.patch, 722 bytes (added by , 15 years ago) |
---|
-
buddypress/bp-core/bp-core-templatetags.php
1517 1517 } 1518 1518 1519 1519 function 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 ); 1521 1528 } 1522 1529 1523 1530 function bp_is_directory() {