Merge branch '0.9.x' into 1.0.x

This commit is contained in:
Brion Vibber
2010-11-03 16:09:49 -07:00
81 changed files with 17314 additions and 10641 deletions

View File

@@ -61,12 +61,7 @@ class AllmapAction extends MapAction
function title()
{
if (!empty($this->profile->fullname)) {
// @todo FIXME: Bad i18n. Should be "%1$s (%2$s)".
$base = $this->profile->fullname . ' (' . $this->user->nickname . ') ';
} else {
$base = $this->user->nickname;
}
$base = $this->profile->getFancyName();
if ($this->page == 1) {
// TRANS: Page title.

View File

@@ -58,12 +58,7 @@ class UsermapAction extends MapAction
function title()
{
if (!empty($this->profile->fullname)) {
// @todo FIXME: Bad i18n. Should be '%1$s (%2$s)'
$base = $this->profile->fullname . ' (' . $this->user->nickname . ')';
} else {
$base = $this->user->nickname;
}
$base = $this->profile->getFancyName();
if ($this->page == 1) {
// @todo CHECKME: inconsisten with paged variant below. " map" missing.