X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=lib%2Fattachmentlist.php;h=cf7c9acc147fe8ab24ddc0c525f5b6c5a43fff16;hb=3438a78c023d84c344200b5f2794c37ead83e539;hp=c3d3f4d1165bf99fe5322fef9f3872be101c391d;hpb=99db745f9d8746e3170bf779746d855c44f0b951;p=quix0rs-gnu-social.git diff --git a/lib/attachmentlist.php b/lib/attachmentlist.php index c3d3f4d116..cf7c9acc14 100644 --- a/lib/attachmentlist.php +++ b/lib/attachmentlist.php @@ -92,19 +92,12 @@ class AttachmentList extends Widget function showListStart() { - $this->out->elementStart('dl', array('id' =>'attachments', - 'class' => 'entry-content')); - // TRANS: DT element label in attachment list. - $this->out->element('dt', null, _('Attachments')); - $this->out->elementStart('dd'); - $this->out->elementStart('ol', array('class' => 'attachments')); + $this->out->elementStart('ol', array('class' => 'attachments entry-content')); } function showListEnd() { - $this->out->elementEnd('dd'); $this->out->elementEnd('ol'); - $this->out->elementEnd('dl'); } /** @@ -288,32 +281,22 @@ class Attachment extends AttachmentListItem $this->out->elementStart('div', array('id' => 'oembed_info', 'class' => 'entry-content')); if (!empty($this->oembed->author_name)) { - $this->out->elementStart('dl', 'vcard author'); - // TRANS: DT element label in attachment list item. - $this->out->element('dt', null, _('Author')); - $this->out->elementStart('dd', 'fn'); + $this->out->elementStart('div', 'fn vcard author'); if (empty($this->oembed->author_url)) { $this->out->text($this->oembed->author_name); } else { $this->out->element('a', array('href' => $this->oembed->author_url, 'class' => 'url'), $this->oembed->author_name); } - $this->out->elementEnd('dd'); - $this->out->elementEnd('dl'); } if (!empty($this->oembed->provider)) { - $this->out->elementStart('dl', 'vcard'); - // TRANS: DT element label in attachment list item. - $this->out->element('dt', null, _('Provider')); - $this->out->elementStart('dd', 'fn'); + $this->out->elementStart('div', 'fn vcard'); if (empty($this->oembed->provider_url)) { $this->out->text($this->oembed->provider); } else { $this->out->element('a', array('href' => $this->oembed->provider_url, 'class' => 'url'), $this->oembed->provider); } - $this->out->elementEnd('dd'); - $this->out->elementEnd('dl'); } $this->out->elementEnd('div'); }