From 16fa745661227516092534e90aa8e8b6d6d93988 Mon Sep 17 00:00:00 2001 From: nicolasconnault Date: Thu, 20 Aug 2009 08:51:28 +0000 Subject: [PATCH] MDL-19796 upgraded calls to print_table, print_single_button, print_user_picture, print_container* and notice_yesno --- filter/manage.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/filter/manage.php b/filter/manage.php index 20750014a2591..d07b98098a4c1 100644 --- a/filter/manage.php +++ b/filter/manage.php @@ -156,7 +156,7 @@ echo "\n
\n"; echo ''; - $table = new stdClass; + $table = new html_table(); $table->head = array(get_string('filter'), get_string('isactive', 'filters')); $table->align = array('left', 'left'); if ($settingscol) { @@ -195,7 +195,7 @@ $table->data[] = $row; } - print_table($table); + echo $OUTPUT->table($table); echo '
' . "\n"; echo ''; echo "\n
\n";