function showListStart()
{
- $this->out->elementStart('ol', array('class' => 'attachments'));
+ $this->out->elementStart('div', array('class' => 'attachments'));
}
function showListEnd()
{
- $this->out->elementEnd('ol');
+ $this->out->elementEnd('div');
}
/**
{
function showListStart()
{
- $this->out->element('h3', null, _('Attachments'));
parent::showListStart();
}
class InlineAttachmentListItem extends AttachmentListItem
{
function showLink() {
- $this->out->element('a', $this->linkAttr(), $this->title());
$this->showRepresentation();
}