Skip to content

Commit

Permalink
Fix gender icon title.
Browse files Browse the repository at this point in the history
  • Loading branch information
dereuromark committed Aug 13, 2020
1 parent 26f4a11 commit 853f544
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/View/Helper/FormatHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ public function genderIcon($value, array $options = [], array $attributes = [])
} elseif ($value == static::GENDER_MALE) {
$icon = $this->icon('male', $options, $attributes);
} else {
$icon = $this->icon('genderless', $options, $attributes + ['title' => __d('tools', 'Unknown')]);
$icon = $this->icon('genderless', $options, $attributes + ['title' => __d('tools', 'genderInter')]);
}
return $icon;
}
Expand Down

0 comments on commit 853f544

Please sign in to comment.