Skip to content

Commit

Permalink
Amended previous POD docs fix adding curly braces around search_by_me…
Browse files Browse the repository at this point in the history
…ta join argument.
  • Loading branch information
jayallen committed Feb 2, 2010
1 parent 3337f22 commit ff93fe9
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions lib/MT/Object.pm
Original file line number Diff line number Diff line change
Expand Up @@ -2690,11 +2690,13 @@ to restrict the above query to a single blog, you would do the following:
'field.review_critic_rating',
'4.5',
{},
'join' => MT::Entry->join_on(
'id',
{ blog_id => 13 },
{ unique => 1 }
)
{
'join' => MT::Entry->join_on(
'id',
{ blog_id => 13 },
{ unique => 1 }
),
}
);
=item * $obj->meta_obj()
Expand Down

0 comments on commit ff93fe9

Please sign in to comment.