[wpmu-trac] Re: [WordPress MU Trac] #532: New blogs are set to private

WordPress MU Trac wpmu-trac at lists.automattic.com
Fri Feb 8 05:28:26 GMT 2008


#532: New blogs are set to private
------------------------+---------------------------------------------------
 Reporter:  drmiketemp  |        Owner:  somebody
     Type:  defect      |       Status:  new     
 Priority:  high        |    Milestone:  WPMU 1.0
Component:  component1  |      Version:  1.0     
 Severity:  major       |   Resolution:          
 Keywords:              |  
------------------------+---------------------------------------------------
Comment (by ayao):

 It's being created as public (in schema.php) but then reset to false later
 on in the process. Specifically, in the wpmu_create_blog function in wp-
 includes/wpmu-functions.php:


 {{{
 if ( is_array($meta) ) foreach ($meta as $key => $value) {
         update_blog_status( $blog_id, $key, $value );
         update_blog_option( $blog_id, $key, $value );
 }

 update_blog_option( $blog_id, 'blog_public', $meta['public'] );

 }}}


 the last line isn't included in the is_array($meta) check, so blog_public
 is always set to false if no defaults were passed (which is the case when
 you create a blog through Site Admin).

-- 
Ticket URL: <http://trac.mu.wordpress.org/ticket/532#comment:14>
WordPress MU Trac <http://mu.wordpress.org/>
WordPress Multiuser


More information about the wpmu-trac mailing list