From 010306fccd068e34187da3f575b958e1d5542dc4 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Wed, 30 Jan 2013 15:10:15 +0100 Subject: reportall: Allow scrolling vertically Since moodle somehow doesnt allow vertical scrolling. --- sqlbox/reportall.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sqlbox/reportall.php b/sqlbox/reportall.php index 612a093..7ba70ce 100644 --- a/sqlbox/reportall.php +++ b/sqlbox/reportall.php @@ -71,7 +71,9 @@ foreach ($users as $user) { $table->data[] = array_merge(array($name, round($progress * 100) . "%"), $s); } +echo '
'; echo html_writer::table($table); +echo '
'; echo $OUTPUT->footer(); -- cgit