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

Change-Id: I6d548d060ac6639fe6d31ddfdae78edbb48ee4cb
This commit is contained in:
Derk-Jan Hartman 2012-06-02 11:46:00 +02:00
parent c01fc3600f
commit 7eefc9f5a3
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 == '' ) {