Skip to content

Commit

Permalink
Update label for missing users
Browse files Browse the repository at this point in the history
  • Loading branch information
patrickmj committed Oct 9, 2014
1 parent 65c1236 commit 1ef2b17
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion models/ContributionContributedItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public function getContributor()
//if the user has been deleted, make a fake user called "Deleted User"
if(!$owner) {
$owner = new User();
$owner->name = __('Deleted User');
$owner->name = '[' . __('Unknown User') . ']';
return $owner;
}
$user = current_user();
Expand Down

0 comments on commit 1ef2b17

Please sign in to comment.