mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/Math
synced 2024-11-13 17:56:59 +00:00
Merge "(bug 36059) Double escaping of html characters in Math module"
This commit is contained in:
commit
022da5c3a5
|
@ -68,7 +68,7 @@ class MathRenderer {
|
||||||
'dir' => 'ltr'
|
'dir' => 'ltr'
|
||||||
)
|
)
|
||||||
),
|
),
|
||||||
'$ ' . str_replace( "\n", " ", htmlspecialchars( $this->tex ) ) . ' $'
|
'$ ' . str_replace( "\n", " ", $this->tex) . ' $'
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
if( $this->tex == '' ) {
|
if( $this->tex == '' ) {
|
||||||
|
|
Loading…
Reference in a new issue