General cleanup & part of ticket #2864: use User_group->getFancyName() instead of replicating the logic in various places. Encapsulates and allows for localization of parens.
This commit is contained in:
parent
b0d7900530
commit
dc4fafbbd1
|
@ -68,12 +68,7 @@ class ShowgroupAction extends GroupDesignAction
|
|||
*/
|
||||
function title()
|
||||
{
|
||||
if (!empty($this->group->fullname)) {
|
||||
// @todo FIXME: Needs proper i18n. Maybe use a generic method for this?
|
||||
$base = $this->group->fullname . ' (' . $this->group->nickname . ')';
|
||||
} else {
|
||||
$base = $this->group->nickname;
|
||||
}
|
||||
$base = $this->group->getFancyName();
|
||||
|
||||
if ($this->page == 1) {
|
||||
// TRANS: Page title for first group page. %s is a group name.
|
||||
|
|
|
@ -1010,7 +1010,7 @@ function common_group_link($sender_id, $nickname)
|
|||
$attrs = array('href' => $group->permalink(),
|
||||
'class' => 'url');
|
||||
if (!empty($group->fullname)) {
|
||||
$attrs['title'] = $group->fullname . ' (' . $group->nickname . ')';
|
||||
$attrs['title'] = $group->getFancyName();
|
||||
}
|
||||
$xs = new XMLStringer();
|
||||
$xs->elementStart('span', 'vcard');
|
||||
|
|
|
@ -41,12 +41,7 @@ class GroupFavoritedAction extends ShowgroupAction
|
|||
*/
|
||||
function title()
|
||||
{
|
||||
if (!empty($this->group->fullname)) {
|
||||
// @todo Create a core method to create this properly. i18n issue.
|
||||
$base = $this->group->fullname . ' (' . $this->group->nickname . ')';
|
||||
} else {
|
||||
$base = $this->group->nickname;
|
||||
}
|
||||
$base = $this->group->getFancyName();
|
||||
|
||||
if ($this->page == 1) {
|
||||
// TRANS: %s is a group name.
|
||||
|
|
Loading…
Reference in New Issue
Block a user