diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-06-17 23:57:39 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-06-17 23:57:39 -0400 |
commit | 56de8727405ce4c08c38adec2f830d845e528190 (patch) | |
tree | c5b39d06c642dc7098cc8d44b4d004b3b422667c /actions/shownotice.php | |
parent | fddcfd75c53b8e08be5b71ca24c31b6982fea7ad (diff) |
move instructions up to the "whats up" area
darcs-hash:20080618035739-84dde-a562cffe186780d5f03cf53798ea249b2bda9fb1.gz
Diffstat (limited to 'actions/shownotice.php')
-rw-r--r-- | actions/shownotice.php | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/actions/shownotice.php b/actions/shownotice.php index 4b954d57b..cc4149d48 100644 --- a/actions/shownotice.php +++ b/actions/shownotice.php @@ -40,7 +40,9 @@ class ShownoticeAction extends StreamAction { # Looks like we're good; show the header - common_show_header($profile->nickname."'s status on ".common_date_string($notice->created)); + common_show_header($profile->nickname."'s status on ".common_date_string($notice->created), + NULL, $user, + array($this, 'show_top')); common_element_start('ul', array('id' => 'notices')); $this->show_notice($notice); @@ -49,6 +51,14 @@ class ShownoticeAction extends StreamAction { common_show_footer(); } + function show_top($user) { + $cur = common_current_user(); + + if ($cur && $cur->id == $user->id) { + common_notice_form(); + } + } + function no_such_notice() { common_user_error('No such notice.'); } |