X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fshownotice.php;h=04dd9011112760c092f57f03ce1e91970fd7c03c;hb=03a08efce9bfe3be1673581594498b5d856d08b0;hp=4b954d57ba64cc646141dba3081ebaf69ee4b594;hpb=fba4b40e0ae12bb82ff58cd4f643f77a541f3bf6;p=quix0rs-gnu-social.git diff --git a/actions/shownotice.php b/actions/shownotice.php index 4b954d57ba..04dd901111 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, $profile, + 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.'); }