Merge "Ask for the MathML and SVG renders only if the input is valid"

This commit is contained in:
jenkins-bot 2015-12-14 22:40:38 +00:00 committed by Gerrit Code Review
commit c900b7bd25
1 changed files with 5 additions and 4 deletions

View File

@ -96,10 +96,11 @@ class MathMathML extends MathRenderer {
$displaystyle = true;
}
$rbi = new MathRestbaseInterface( $tex, $displaystyle );
$rbi->checkTeX();
$this->mathml = $rbi->getMathML();
$this->svg = $rbi->getSvg();
$this->svgPath = $rbi->getFullSvgUrl();
if ( $rbi->checkTeX() ) {
$this->mathml = $rbi->getMathML();
$this->svg = $rbi->getSvg();
$this->svgPath = $rbi->getFullSvgUrl();
}
$this->changed = false;
return $rbi->getSuccess();
}