diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-03-30 15:15:40 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-03-30 15:15:40 +0000 |
commit | 27b45eeb4882e6c8d5de65d913a148437e91b50c (patch) | |
tree | b90fa9d4c2d8c75e33126f6a67f0f968255c1d8e /actions | |
parent | 8c073a34ce472fc8d0385659a222339a5ba4254a (diff) | |
parent | 559cf75edbbf60a0d9f8e4991333d85a79359a99 (diff) |
Merge branch '0.7.x' into 0.8.x
Diffstat (limited to 'actions')
-rw-r--r-- | actions/noticesearch.php | 1 | ||||
-rw-r--r-- | actions/showgroup.php | 10 | ||||
-rw-r--r-- | actions/showstream.php | 20 |
3 files changed, 17 insertions, 14 deletions
diff --git a/actions/noticesearch.php b/actions/noticesearch.php index 4aec41621..9058cf53c 100644 --- a/actions/noticesearch.php +++ b/actions/noticesearch.php @@ -125,6 +125,7 @@ class NoticesearchAction extends SearchAction $this->pagination($page > 1, $cnt > NOTICES_PER_PAGE, $page, 'noticesearch', array('q' => $q)); } + function isReadOnly() { return true; diff --git a/actions/showgroup.php b/actions/showgroup.php index 58cc7a97c..79445851f 100644 --- a/actions/showgroup.php +++ b/actions/showgroup.php @@ -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); } } diff --git a/actions/showstream.php b/actions/showstream.php index b83f45d53..f5886f3d3 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -67,11 +67,17 @@ class ShowstreamAction extends Action function title() { + if (!empty($this->profile->fullname)) { + $base = $this->profile->fullname . ' (' . $this->user->nickname . ') '; + } else { + $base = $this->user->nickname; + } + if ($this->page == 1) { - return $this->user->nickname; + return $base; } else { return sprintf(_("%s, page %d"), - $this->user->nickname, + $base, $this->page); } } @@ -140,16 +146,6 @@ class ShowstreamAction extends Action $nav->show(); } - function showPageTitle() - { - $user =& common_current_user(); - if ($user && ($user->id == $this->profile->id)) { - $this->element('h1', NULL, _("Your profile")); - } else { - $this->element('h1', NULL, sprintf(_('%s\'s profile'), $this->profile->nickname)); - } - } - function showPageNoticeBlock() { return; |