From: toyomoyo Date: Tue, 19 Sep 2006 04:31:36 +0000 (+0000) Subject: took out a comment, for proper debugging use the new debugging() function X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=5f10f7750555785ef58720a09f3b1dbb84d07b8f;p=moodle.git took out a comment, for proper debugging use the new debugging() function --- diff --git a/filter/algebra/filter.php b/filter/algebra/filter.php index faa3e3e320..3cc2d9ff13 100644 --- a/filter/algebra/filter.php +++ b/filter/algebra/filter.php @@ -125,8 +125,6 @@ function algebra_filter ($courseid, $text) { $replacement = str_replace('@','@',$matches[1][$i]).$matches[2][$i]; $text = str_replace($matches[0][$i],$replacement,$text); } - - //if (isadmin()) { error_reporting (E_ALL); }; //for debugging // some algebraic input expression // or @@ some algebraic input expression @@ diff --git a/filter/tex/filter.php b/filter/tex/filter.php index 2eab2a7b37..aacca52e30 100644 --- a/filter/tex/filter.php +++ b/filter/tex/filter.php @@ -115,8 +115,6 @@ function tex_filter ($courseid, $text) { $text = str_replace($matches[0][$i],$replacement,$text); } - //if (isadmin()) { error_reporting (E_ALL); }; //for debugging - // TeX expression // or $$ TeX expression $$ // or \[ TeX expression \] // original tag of MathType and TeXaide (dlnsk)