From c862b3f35505e0a862f69b08e88a4dd294fc43e9 Mon Sep 17 00:00:00 2001 From: Mikael Nordfeldth Date: Mon, 21 Apr 2014 21:19:45 +0200 Subject: [PATCH] Redirect from Attachment_thumbnailAction Noone should trust an tag delivered like that anyway. --- actions/attachment_thumbnail.php | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) diff --git a/actions/attachment_thumbnail.php b/actions/attachment_thumbnail.php index 0353fa18ff..b5173efa77 100644 --- a/actions/attachment_thumbnail.php +++ b/actions/attachment_thumbnail.php @@ -61,24 +61,9 @@ class Attachment_thumbnailAction extends AttachmentAction * @return nothing */ function showPage() - { - if (Event::handle('StartShowBody', array($this))) { - $this->showCore(); - Event::handle('EndShowBody', array($this)); - } - } - - /** - * Show core. - * - * Shows local navigation, content block and aside. - * - * @return nothing - */ - function showCore() { // Returns a File_thumbnail object or throws exception if not available $thumbnail = $this->attachment->getThumbnail($this->thumb_w, $this->thumb_h, $this->thumb_c); - $this->element('img', array('src' => $thumbnail->getUrl(), 'alt' => 'Thumbnail')); + common_redirect($thumbnail->getUrl()); } }