diff --git a/exercises.php b/exercises.php
index 532c8b09..918d01d7 100755
--- a/exercises.php
+++ b/exercises.php
@@ -152,12 +152,12 @@
}
// Create border and alignment styles for use as needed.
-$style1 = 'style="border-color: #000000; border-style: solid; border-width: 3px; text-align: center;"';
-$style2 = 'style="border-color: #000000; border-style: solid; border-width: 3px; text-align: left;"';
+//$style1 = 'style="border-color: #000000; border-style: solid; border-width: 3px; text-align: center;"';
+//$style2 = 'style="border-color: #000000; border-style: solid; border-width: 3px; text-align: left;"';
// Print header row for Lesson table currently being viewed.
-echo '
'.get_string('ename', 'mootyper').' |
- '.$lessons[$selectedlessonindex]['lessonname'].' |
- '.$jlink.' |
';
+echo ''.get_string('ename', 'mootyper').' |
+ '.$lessons[$selectedlessonindex]['lessonname'].' |
+ '.$jlink.' |
';
// Print table row for each of the exercises in the lesson currently being viewed.
$exercises = $DB->get_records("mootyper_exercises", ['lesson' => $lessonpo]);
@@ -192,14 +192,14 @@
.get_string('eeditlabel', 'mootyper').'>';
// 20210326 Shorten displayed exercisename as well as text to type.
- echo ''.$exnametocut.' | '.$strtocut.' | ';
+ echo '
'.$exnametocut.' | '.$strtocut.' | ';
// If the user can edit or delete this lesson and its exercises, then add edit and delete tools.
if (lessons::is_editable_by_me($USER->id, $id, $lessonpo)) {
- echo ''.$jlink2.' | '.$jlink1.' | ';
+ echo ''.$jlink2.' | '.$jlink1.' | ';
} else {
// If the user can not edit or delete, show an empty space.
- echo ' | ';
+ echo ' | ';
}
echo '
';
}