From 55d918c37ddce29edb52af3ff9de321fb026f4ee Mon Sep 17 00:00:00 2001 From: Mihail Geshoski Date: Tue, 30 Sep 2025 22:10:56 +0800 Subject: [PATCH] MDL-86800 profiling: Fix incorrect table borders --- public/lib/xhprof/xhprof_moodle.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/lib/xhprof/xhprof_moodle.php b/public/lib/xhprof/xhprof_moodle.php index 86c63a6d526..1eeee822746 100644 --- a/public/lib/xhprof/xhprof_moodle.php +++ b/public/lib/xhprof/xhprof_moodle.php @@ -353,7 +353,7 @@ function profiling_print_run($run, $prevreferences = null) { $table = new html_table(); $table->align = array('right', 'left'); $table->tablealign = 'center'; - $table->attributes['class'] = 'profilingruntable'; + $table->attributes['class'] = 'profilingruntable table-reboot'; $table->colclasses = array('label', 'value'); $table->data = array( array(get_string('runid', 'tool_profiling'), $run->runid), @@ -419,7 +419,7 @@ function profiling_print_rundiff($run1, $run2) { $table = new html_table(); $table->align = array('right', 'left', 'left', 'left'); $table->tablealign = 'center'; - $table->attributes['class'] = 'profilingruntable'; + $table->attributes['class'] = 'profilingruntable table-reboot'; $table->colclasses = array('label', 'value1', 'value2'); $table->data = array( array(get_string('runid', 'tool_profiling'),