]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Updated:
authorsarven <csarven@plantard.controlezvous.ca>
Thu, 15 Jan 2009 00:36:17 +0000 (00:36 +0000)
committersarven <csarven@plantard.controlezvous.ca>
Thu, 15 Jan 2009 00:36:17 +0000 (00:36 +0000)
showNoticeLink()

lib/noticelist.php

index b4ea4d41cd6858e20281cd246cf75edcbaf05765..26aa7ed33e68181359911c5d2dfb07f4ef4d6591 100644 (file)
@@ -330,14 +330,18 @@ class NoticeListItem
             preg_match('/^http/', $this->notice->uri)) {
             $noticeurl = $this->notice->uri;
         }
-        common_element_start('a', array('class' => 'permalink',
-                                        'rel' => 'bookmark',
+        $this->elementStart('dl', 'timestamp');
+        $this->element('dt', _('Published')); 
+        $this->elementStart('dd', null);
+        $this->element('a', array('rel' => 'bookmark',
                                         'href' => $noticeurl));
         $dt = common_date_iso8601($this->notice->created);
-        common_element('abbr', array('class' => 'published',
+        $this->element('abbr', array('class' => 'published',
                                      'title' => $dt),
                        common_date_string($this->notice->created));
-        common_element_end('a');
+        $this->elementEnd('a');
+        $this->elementEnd('dd');
+        $this->elementEnd('dl');
     }
 
     /**
@@ -397,8 +401,7 @@ class NoticeListItem
             $this->elementStart('dl', 'response');
             $this->element('dt', null, _('To'));
             $this->elementStart('dd');
-            $this->element('a', array('class' => 'inreplyto',
-                                      'href' => $replyurl,
+            $this->element('a', array('href' => $replyurl,
                                       'rel' => 'in-reply-to'),
                            _('in reply to'));
             $this->elementEnd('dd');