diff options
author | Robin Millette <millette@plantard.controlezvous.ca> | 2009-06-01 19:40:39 +0000 |
---|---|---|
committer | Robin Millette <millette@plantard.controlezvous.ca> | 2009-06-01 19:40:39 +0000 |
commit | 4bd195b80f1bf9f7da11ed8cc14a0027228f733e (patch) | |
tree | ce62de0512a6671a722a831b0ba8c472a1e407af | |
parent | a39fa0ce2bceadbfec8c1ddb8d1148edeb84634d (diff) |
Fixed small bug for attachment layout (css/js).
-rw-r--r-- | lib/attachmentlist.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/attachmentlist.php b/lib/attachmentlist.php index 45e4fa319..898be1bb0 100644 --- a/lib/attachmentlist.php +++ b/lib/attachmentlist.php @@ -83,7 +83,7 @@ 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' =>'attachment')); $this->out->element('dt', null, _('Attachments')); $this->out->elementStart('dd'); $this->out->elementStart('ol', array('class' => 'attachments')); |