Skip to:
Content

BuddyPress.org


Ignore:
Timestamp:
08/10/2011 06:32:02 AM (14 years ago)
Author:
djpaul
Message:

Tidy up whitespace. Fixes #3466, props cnorris23

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/bp-blogs/bp-blogs-functions.php

    r4959 r4961  
    3535
    3636/**
    37  * Populates the BP blogs table with existing blogs. 
     37 * Populates the BP blogs table with existing blogs.
    3838 *
    3939 * @package BuddyPress Blogs
     
    5656            $users      = get_users( array( 'blog_id' => $blog_id ) );
    5757            $subscribers    = get_users( array( 'blog_id' => $blog_id, 'role' => 'subscriber' ) );
    58            
     58
    5959            if ( $users ) {
    6060                foreach ( (array)$users as $user ) {
     
    103103
    104104    $is_private = !empty( $_POST['blog_public'] ) && (int)$_POST['blog_public'] ? false : true;
    105     $is_private = !apply_filters( 'bp_is_new_blog_public', !$is_private ); 
     105    $is_private = !apply_filters( 'bp_is_new_blog_public', !$is_private );
    106106
    107107    // Only record this activity if the blog is public
     
    166166        return false;
    167167
    168     $is_blog_public = apply_filters( 'bp_is_blog_public', (int)get_blog_option( $blog_id, 'blog_public' ) ); 
     168    $is_blog_public = apply_filters( 'bp_is_blog_public', (int)get_blog_option( $blog_id, 'blog_public' ) );
    169169
    170170    if ( 'publish' == $post->post_status && empty( $post->post_password ) ) {
Note: See TracChangeset for help on using the changeset viewer.