diff options
author | Sarven Capadisli <csarven@controlyourself.ca> | 2009-06-25 06:55:40 +0000 |
---|---|---|
committer | Sarven Capadisli <csarven@controlyourself.ca> | 2009-06-25 06:55:40 +0000 |
commit | fcb43dd7112740284d2c1cb2708ac6a8a135cbdb (patch) | |
tree | eea1adaee182c31376b80761abdfd46c6a7c8987 /lib/attachmentlist.php | |
parent | 0c5c8348277e234f5f3d1e0b4956e698a6f95a14 (diff) |
Added class entry-content to attachment list container
Diffstat (limited to 'lib/attachmentlist.php')
-rw-r--r-- | lib/attachmentlist.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/attachmentlist.php b/lib/attachmentlist.php index b5513ade7..f6a1b59d0 100644 --- a/lib/attachmentlist.php +++ b/lib/attachmentlist.php @@ -82,7 +82,8 @@ class AttachmentList extends Widget $atts = new File; $att = $atts->getAttachments($this->notice->id); if (empty($att)) return 0; - $this->out->elementStart('dl', array('id' =>'attachments')); + $this->out->elementStart('dl', array('id' =>'attachments', + 'class' => 'entry-content')); $this->out->element('dt', null, _('Attachments')); $this->out->elementStart('dd'); $this->out->elementStart('ol', array('class' => 'attachments')); |