Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #16225, comment 4


Ignore:
Timestamp:
09/09/2012 09:29:33 PM (13 years ago)
Author:
wonderboymusic
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #16225, comment 4

    initial v1  
    11this happens because {{{get_blogs_of_user()}}} builds a map of blogs, checks to make sure {{{! $blog->archived && ! $blog->spam && ! $blog->deleted}}} but then builds a new {{{stdClass}}} and doesn't pass that data along.
    22
    3 {{{( $primary->archived == 1 || $primary->spam == 1 || $primary->deleted == 1 )}}} us checked by {{{get_active_blog_for_user()}}}, which is correct, because sometimes {{{$primary = get_blog_details( $primary_blog );}}} which is an object with those properties.
     3{{{( $primary->archived == 1 || $primary->spam == 1 || $primary->deleted == 1 )}}} is checked by {{{get_active_blog_for_user()}}}, which is correct, because sometimes {{{$primary = get_blog_details( $primary_blog );}}} which is an object with those properties.
    44
    55Patch attached.