]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - actions/shownotice.php
Fix for bug #00019 (Linkified all @ addresses in a message)
[quix0rs-gnu-social.git] / actions / shownotice.php
index 2ede559e26e8b67656c6c17061379ca1570a6bf3..04dd9011112760c092f57f03ce1e91970fd7c03c 100644 (file)
@@ -32,13 +32,17 @@ class ShownoticeAction extends StreamAction {
                        $this->no_such_notice();
                }
 
-               if (!$notice->getProfile()) {
+               $profile = $notice->getProfile();
+               
+               if (!$profile) {
                        $this->no_such_notice();
                }
 
                # 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);
@@ -47,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.');
        }