From 14efad938879156ae46b5c014f3af8bc817220b4 Mon Sep 17 00:00:00 2001 From: vyshane Date: Tue, 9 Jan 2007 10:20:59 +0000 Subject: [PATCH] Fixes for MDL-7861. --- course/format/lams/format.php | 12 ++++++------ course/format/weeks/format.php | 8 ++++---- 2 files changed, 10 insertions(+), 10 deletions(-) diff --git a/course/format/lams/format.php b/course/format/lams/format.php index d6cfc8655d..34250d1bd8 100644 --- a/course/format/lams/format.php +++ b/course/format/lams/format.php @@ -285,28 +285,28 @@ while ($section <= $course->numsections) { if (isediting($course->id)) { if ($course->marker == $section) { // Show the "light globe" on/off echo ''. - ''.$strmarkedthistopic.'
'; + ''.$strmarkedthistopic.'
'; } else { echo ''. - ''.$strmarkthistopic.'
'; + ''.$strmarkthistopic.'
'; } if ($thissection->visible) { // Show the hide/show eye echo ''. - ''.$strtopichide.'
'; + ''.$strtopichide.'
'; } else { echo ''. - ''.$strtopicshow.'
'; + ''.$strtopicshow.'
'; } if ($section > 1) { // Add a arrow to move section up echo ''. - ''.$strmoveup.'
'; + ''.$strmoveup.'
'; } if ($section < $course->numsections) { // Add a arrow to move section down echo ''. - ''.$strmovedown.'
'; + ''.$strmovedown.'
'; } } diff --git a/course/format/weeks/format.php b/course/format/weeks/format.php index 112fc1f9e0..9c5b877fc5 100644 --- a/course/format/weeks/format.php +++ b/course/format/weeks/format.php @@ -224,19 +224,19 @@ if (isediting($course->id)) { if ($thissection->visible) { // Show the hide/show eye echo ''. - ''.$strweekhide.'
'; + ''.$strweekhide.'
'; } else { echo ''. - ''.$strweekshow.'
'; + ''.$strweekshow.'
'; } if ($section > 1) { // Add a arrow to move section up echo ''. - ''.$strmoveup.'
'; + ''.$strmoveup.'
'; } if ($section < $course->numsections) { // Add a arrow to move section down echo ''. - ''.$strmovedown.'
'; + ''.$strmovedown.'
'; } } -- 2.39.5