Merge "(bug 36059) Double escaping of html characters in Math module"

This commit is contained in:
Brion VIBBER 2012-06-25 19:25:13 +00:00 committed by Gerrit Code Review
commit 022da5c3a5
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class MathRenderer {
'dir' => 'ltr'
)
),
'$ ' . str_replace( "\n", " ", htmlspecialchars( $this->tex ) ) . ' $'
'$ ' . str_replace( "\n", " ", $this->tex) . ' $'
);
}
if( $this->tex == '' ) {