add fullname to title and h1 for groups

This commit is contained in:
Evan Prodromou 2009-03-30 10:28:44 -04:00
parent d5ac986b80
commit 650a86d79a
1 changed files with 8 additions and 2 deletions

View File

@ -73,11 +73,17 @@ class ShowgroupAction extends Action
function title()
{
if (!empty($this->group->fullname)) {
$base = $this->group->fullname . ' (' . $this->group->nickname . ')';
} else {
$base = $this->group->nickname;
}
if ($this->page == 1) {
return sprintf(_("%s group"), $this->group->nickname);
return sprintf(_("%s group"), $base);
} else {
return sprintf(_("%s group, page %d"),
$this->group->nickname,
$base,
$this->page);
}
}