diff options
Diffstat (limited to 'actions')
-rw-r--r-- | actions/all.php | 4 | ||||
-rw-r--r-- | actions/showstream.php | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/actions/all.php b/actions/all.php index e51dc375c..83401d422 100644 --- a/actions/all.php +++ b/actions/all.php @@ -46,7 +46,9 @@ class AllAction extends StreamAction { common_show_header($profile->nickname . _t(" and friends"), array($this, 'show_header'), $user); - + + $this->views_menu(); + $this->show_notices($profile); common_show_footer(); diff --git a/actions/showstream.php b/actions/showstream.php index f8446e008..2130251ce 100644 --- a/actions/showstream.php +++ b/actions/showstream.php @@ -53,7 +53,9 @@ class ShowstreamAction extends StreamAction { $user->nickname))); common_show_header($profile->nickname, array($this, 'show_header'), $user); - + + $this->views_menu(); + $this->show_profile($profile); $this->show_notices($profile); |