From 56de8727405ce4c08c38adec2f830d845e528190 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 17 Jun 2008 23:57:39 -0400 Subject: move instructions up to the "whats up" area darcs-hash:20080618035739-84dde-a562cffe186780d5f03cf53798ea249b2bda9fb1.gz --- actions/shownotice.php | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) (limited to 'actions/shownotice.php') 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.'); } -- cgit v1.2.3-54-g00ecf