From d34aa07fbcf3eb85f9e638e093cb91aeb8756071 Mon Sep 17 00:00:00 2001 From: Aaron Schulz Date: Wed, 25 May 2011 05:26:54 +0000 Subject: [PATCH] Finish r88768, *ahem* --- includes/media/SVG.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/media/SVG.php b/includes/media/SVG.php index 04cea7530c..a7565be56a 100644 --- a/includes/media/SVG.php +++ b/includes/media/SVG.php @@ -217,7 +217,7 @@ class SvgHandler extends ImageHandler { function unpackMetadata( $metadata ) { wfSuppressWarnings(); - $unser = @unserialize( $metadata ); + $unser = unserialize( $metadata ); wfRestoreWarnings(); if ( isset( $unser['version'] ) && $unser['version'] == self::SVG_METADATA_VERSION ) { return $unser; -- 2.20.1