From: fmarier Date: Fri, 7 Dec 2007 05:00:22 +0000 (+0000) Subject: weblib: Fix typo in print_table() which was causing invalid tag X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=2bba926db020eb7c8634244d6a2c97d5a3bbde9c;p=moodle.git weblib: Fix typo in print_table() which was causing invalid tag MDL-11506 --- diff --git a/lib/weblib.php b/lib/weblib.php index 396cfd40d8..e2fb815444 100644 --- a/lib/weblib.php +++ b/lib/weblib.php @@ -4594,9 +4594,7 @@ function print_table($table, $return=false) { $align[$key] = ''; } - $output .= ''. $heading .''; - // commenting the following code out as '. $heading .''; + $output .= ''. $heading .''; } $output .= ''."\n"; }