From: Mikael Nordfeldth Date: Sun, 22 Jun 2014 17:17:49 +0000 (+0200) Subject: We don't have the thumbnail title in attachment list X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=783cc20586410433476e41f9056e14748a4e3279;p=quix0rs-gnu-social.git We don't have the thumbnail title in attachment list --- diff --git a/lib/attachmentlistitem.php b/lib/attachmentlistitem.php index f5cc30e525..025ffa9fd6 100644 --- a/lib/attachmentlistitem.php +++ b/lib/attachmentlistitem.php @@ -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) {