[LON-CAPA-cvs] cvs: loncom /interface lonhelper.pm
raeburn
raeburn at source.lon-capa.org
Sat Apr 18 16:23:16 EDT 2026
raeburn Sat Apr 18 20:23:16 2026 EDT
Modified files:
/loncom/interface lonhelper.pm
Log:
- <tr> tag for first non-header row in listing of resources in a helper
should have class attribute (e.g. LC_even_row) instead of just <tr>.
Index: loncom/interface/lonhelper.pm
diff -u loncom/interface/lonhelper.pm:1.206 loncom/interface/lonhelper.pm:1.207
--- loncom/interface/lonhelper.pm:1.206 Thu Mar 12 13:25:47 2026
+++ loncom/interface/lonhelper.pm Sat Apr 18 20:23:16 2026
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# .helper XML handler to implement the LON-CAPA helper
#
-# $Id: lonhelper.pm,v 1.206 2026/03/12 13:25:47 raeburn Exp $
+# $Id: lonhelper.pm,v 1.207 2026/04/18 20:23:16 raeburn Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -2413,7 +2413,9 @@
}
}
$result .= '<th>'.&Apache::lonlocal::mt('Select').'</th>';
- $result .= "</tr><tr>"; # Close off the extra row and start a new one.
+ # Close off the extra row and start a new one
+ $result .= &Apache::loncommon::end_data_table_row().
+ &Apache::loncommon::start_data_table_row();
$headings_done = 1;
}
More information about the LON-CAPA-cvs
mailing list