]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/shownotice.php
move instructions to top in openid pages
[quix0rs-gnu-social.git] / actions / shownotice.php
index 4b954d57ba64cc646141dba3081ebaf69ee4b594..04dd9011112760c092f57f03ce1e91970fd7c03c 100644 (file)
@@ -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.');
        }