From 0895f1afdc57cdd000b6678c75ed5378f1f14514 Mon Sep 17 00:00:00 2001 From: Daniel Thies Date: Wed, 3 Jul 2024 15:15:15 -0500 Subject: [PATCH] VID-813: Style fix --- index.php | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/index.php b/index.php index 5a66db81..6832e76b 100644 --- a/index.php +++ b/index.php @@ -104,7 +104,11 @@ if (videotime_has_pro() && has_capability('mod/videotime:view_report', $coursecontext)) { $url = new moodle_url('/mod/videotime/report.php', ['id' => $videotime->coursemodule]); - $data[] = \html_writer::link($url, $DB->get_field(\videotimeplugin_pro\session::TABLE, 'COUNT(DISTINCT uuid)', ['module_id' => $videotime->coursemodule]) . ' ' . get_string('views', 'videotime')); + $data[] = \html_writer::link($url, $DB->get_field( + \videotimeplugin_pro\session::TABLE, + 'COUNT(DISTINCT uuid)', + ['module_id' => $videotime->coursemodule] + ) . ' ' . get_string('views', 'videotime')); } $table->data[] = $data;