1
0
mirror of https://github.com/moodle/moodle.git synced 2025-05-12 11:15:49 +02:00

took out a comment, for proper debugging use the new debugging() function

This commit is contained in:
toyomoyo 2006-09-19 04:31:36 +00:00
parent b14123498f
commit 5f10f77505
2 changed files with 0 additions and 4 deletions
filter

@ -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
// <algebra> some algebraic input expression </algebra>
// or @@ some algebraic input expression @@

@ -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)