diff --git a/MathMathML.php b/MathMathML.php index d4f19fe..b244987 100644 --- a/MathMathML.php +++ b/MathMathML.php @@ -448,7 +448,9 @@ class MathMathML extends MathRenderer { } $output .= Xml::tags( $element, array( 'class' => $this->getClassName(), 'style' => 'display: none;' ), $mml ); $output .= $this->getFallbackImage( $this->getMode() ) . "\n"; - $output .= $this->getFallbackImage( MW_MATH_PNG ) . "\n"; + // TODO: Implement PNG image fallbacks without loading images in + // browsers that support MathML or SVG! + // $output .= $this->getFallbackImage( MW_MATH_PNG ) . "\n"; $output .= HTML::closeElement( $element ); return $output; }