From b9828d25ff34dcf42bd9f193861edec759bf54ae Mon Sep 17 00:00:00 2001 From: =?utf8?q?=C3=86var=20Arnfj=C3=B6r=C3=B0=20Bjarmason?= Date: Thu, 21 Apr 2005 18:28:25 +0000 Subject: [PATCH] * Show exif data after the image not before it. --- includes/ImagePage.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/ImagePage.php b/includes/ImagePage.php index 4c40fcb024..582b4c180a 100644 --- a/includes/ImagePage.php +++ b/includes/ImagePage.php @@ -25,8 +25,8 @@ class ImagePage extends Article { $this->img = new Image( $this->mTitle ); if( $this->mTitle->getNamespace() == NS_IMAGE ) { - if ( $this->img->exists() ) $this->showEXIFdata(); $this->openShowImage(); + if ( $this->img->exists() ) $this->showEXIFdata(); # No need to display noarticletext, we use our own message, output in openShowImage() if ( $this->getID() ) { -- 2.20.1