]> git.mjollnir.org Git - moodle.git/commitdiff
took out a comment, for proper debugging use the new debugging() function
authortoyomoyo <toyomoyo>
Tue, 19 Sep 2006 04:31:36 +0000 (04:31 +0000)
committertoyomoyo <toyomoyo>
Tue, 19 Sep 2006 04:31:36 +0000 (04:31 +0000)
filter/algebra/filter.php
filter/tex/filter.php

index faa3e3e32066f2cd2b06742dc893a29817f77681..3cc2d9ff13cedc3e3506d3b8ad8352ea9d90e88b 100644 (file)
@@ -125,8 +125,6 @@ function algebra_filter ($courseid, $text) {
         $replacement = str_replace('@','&#x00040;',$matches[1][$i]).$matches[2][$i];
         $text = str_replace($matches[0][$i],$replacement,$text);
     }
-
-    //if (isadmin()) { error_reporting (E_ALL); }; //for debugging
      
     // <algebra> some algebraic input expression </algebra>
     // or @@ some algebraic input expression @@
index 2eab2a7b3732f351945f5eeb2a7850b48a9ca10c..aacca52e3079596fe7cbf823d1850ec9d1b7e7e3 100644 (file)
@@ -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> TeX expression </tex>
     // or $$ TeX expression $$
     // or \[ TeX expression \]          // original tag of MathType and TeXaide (dlnsk)