Changes between Initial Version and Version 1 of Ticket #16225, comment 4
- Timestamp:
- 09/09/2012 09:29:33 PM (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16225, comment 4
initial v1 1 1 this 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. 2 2 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. 4 4 5 5 Patch attached.