From ec7125dc199ec85e04fa5ab35ff34efc2aed0703 Mon Sep 17 00:00:00 2001 From: fmarier Date: Fri, 7 Dec 2007 04:59:32 +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"; }