]> git.mxchange.org Git - quix0rs-gnu-social.git/commitdiff
Using rel=external instead of class=external for jOverlay title link
authorSarven Capadisli <csarven@status.net>
Sun, 14 Mar 2010 19:01:24 +0000 (15:01 -0400)
committerSarven Capadisli <csarven@status.net>
Thu, 25 Mar 2010 20:33:38 +0000 (21:33 +0100)
lib/attachmentlist.php
theme/base/css/display.css

index fe38281af92b94e52924a36ffece8cf82824e65a..b503bfb45e02f8575c3060b80385801974a830e9 100644 (file)
@@ -248,9 +248,7 @@ class Attachment extends AttachmentListItem
         $this->out->elementStart('div', array('id' => 'attachment_view',
                                               'class' => 'hentry'));
         $this->out->elementStart('div', 'entry-title');
-        $this->out->elementStart('a', $this->linkAttr());
-        $this->out->element('span', null, $this->linkTitle());
-        $this->out->elementEnd('a');
+        $this->out->element('a', $this->linkAttr(), $this->linkTitle());
         $this->out->elementEnd('div');
 
         $this->out->elementStart('div', 'entry-content');
@@ -296,7 +294,7 @@ class Attachment extends AttachmentListItem
     }
 
     function linkAttr() {
-        return array('class' => 'external', 'href' => $this->attachment->url);
+        return array('rel' => 'external', 'href' => $this->attachment->url);
     }
 
     function linkTitle() {
index 782d3dc714d5493116142cc36a23f03427aa7968..a2e4cdf2afe3347aba21d549be3ceb5e2c94b701 100644 (file)
@@ -1326,7 +1326,7 @@ margin-bottom:0;
 padding:11px;
 min-height:auto;
 }
-#jOverlayContent .external span {
+#jOverlayContent .entry-title {
 display:block;
 margin-bottom:11px;
 }