From 2bba926db020eb7c8634244d6a2c97d5a3bbde9c Mon Sep 17 00:00:00 2001 From: fmarier Date: Fri, 7 Dec 2007 05:00:22 +0000 Subject: [PATCH] weblib: Fix typo in print_table() which was causing invalid tag MDL-11506 --- lib/weblib.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/lib/weblib.php b/lib/weblib.php index 396cfd40d86..e2fb8154444 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"; }