We don't have the thumbnail title in attachment list

This commit is contained in:
Mikael Nordfeldth 2014-06-22 19:17:49 +02:00
parent 42104612bd
commit 783cc20586
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ class AttachmentListItem extends Widget
case 'image/jpeg':
try {
$thumb = $this->attachment->getThumbnail();
$this->out->element('img', array('class'=>'u-photo', 'src' => $thumb->getUrl(), 'alt' => $e->file->title));
$this->out->element('img', array('class'=>'u-photo', 'src' => $thumb->getUrl(), 'alt' => ''));
} catch (UseFileAsThumbnailException $e) {
$this->out->element('img', array('class'=>'u-photo', 'src' => $e->file->getUrl(), 'alt' => $e->file->title));
} catch (UnsupportedMediaException $e) {