From a1f0cbbde2aa4950567f9113163a71575b4c7c36 Mon Sep 17 00:00:00 2001 From: Alexandre Emsenhuber Date: Mon, 10 Aug 2009 11:12:04 +0000 Subject: [PATCH] Fix E_PARSE from r54708 --- includes/media/GIF.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/media/GIF.php b/includes/media/GIF.php index 00868120d4..1c6dde81fd 100644 --- a/includes/media/GIF.php +++ b/includes/media/GIF.php @@ -24,7 +24,7 @@ class GIFHandler extends BitmapHandler { } function getImageArea( $image, $width, $height ) { - $ser = $image->getMetadata() + $ser = $image->getMetadata(); if ($ser) { $metadata = unserialize($ser); return $width * $height * $metadata['frameCount']; -- 2.20.1