Fix version check version from r105559
authorSam Reed <reedy@users.mediawiki.org>
Thu, 8 Dec 2011 18:07:26 +0000 (18:07 +0000)
committerSam Reed <reedy@users.mediawiki.org>
Thu, 8 Dec 2011 18:07:26 +0000 (18:07 +0000)
includes/Sanitizer.php
includes/media/Bitmap.php

index 478fe1e..fb38610 100644 (file)
@@ -457,10 +457,14 @@ class Sanitizer {
                                                                # and see if we find a match below them
                                                                $optstack = array();
                                                                array_push( $optstack, $ot );
-                                                               $ot = @array_pop( $tagstack );
+                                                               wfSuppressWarnings();
+                                                               $ot = array_pop( $tagstack );
+                                                               wfRestoreWarnings();
                                                                while ( $ot != $t && isset( $htmlsingleallowed[$ot] ) ) {
                                                                        array_push( $optstack, $ot );
-                                                                       $ot = @array_pop( $tagstack );
+                                                                       wfSuppressWarnings();
+                                                                       $ot = array_pop( $tagstack );
+                                                                       wfRestoreWarnings();
                                                                }
                                                                if ( $t != $ot ) {
                                                                        # No match. Push the optional elements back again
index 76c3009..dd1f7f1 100644 (file)
@@ -279,7 +279,7 @@ class BitmapHandler extends ImageHandler {
                                        < $wgSharpenReductionThreshold ) {
                                $sharpen = "-sharpen " . wfEscapeShellArg( $wgSharpenParameter );
                        }
-                       if ( version_compare( $this->getMagickVersion(), "6.3.5" ) >= 0 ) {
+                       if ( version_compare( $this->getMagickVersion(), "6.5.6" ) >= 0 ) {
                                // JPEG decoder hint to reduce memory, available since IM 6.5.6-2
                                $decoderHint = "-define jpeg:size={$params['physicalDimensions']}";
                        }