From 5a292593e38f02a7c7defe1efa43c71d16524611 Mon Sep 17 00:00:00 2001 From: Arne Heizmann Date: Mon, 7 Jun 2004 17:19:05 +0000 Subject: [PATCH] Bugfix suggested by Laurent GUERBY on wikitech-l --- includes/Math.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Math.php b/includes/Math.php index 5946061fb4..3397aff4be 100644 --- a/includes/Math.php +++ b/includes/Math.php @@ -30,7 +30,7 @@ class MathRenderer { if( $this->mode == MW_MATH_SOURCE ) { # No need to render or parse anything more! - return ('$ '.htmlspecialchars( $tex ).' $'); + return ('$ '.htmlspecialchars( $this->tex ).' $'); } if( !$this->_recall() ) { -- 2.20.1