Skip to content

Commit

Permalink
Merge pull request phpbb#74 from prototech/fix-contrib-count-display
Browse files Browse the repository at this point in the history
Fix issue with the number of coauthors distorting the type count for contrib owners.
  • Loading branch information
DavidIQ committed Mar 6, 2012
2 parents 79adaf5 + 3675e86 commit 92f7269
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion titania/includes/objects/author.php
Expand Up @@ -341,7 +341,7 @@ public function assign_details($return = false, $row= false, $revert = true)
'LEFT_JOIN' => array(
array(
'FROM' => array(TITANIA_CONTRIB_COAUTHORS_TABLE => 'ca'),
'ON' => 'ca.contrib_id = c.contrib_id',
'ON' => 'ca.contrib_id = c.contrib_id AND ca.user_id = ' . $this->user_id,
),
),

Expand Down

0 comments on commit 92f7269

Please sign in to comment.