From b3d26d8d57704dfde03d716ed234a3eb4583aaf6 Mon Sep 17 00:00:00 2001 From: nfreear Date: Tue, 14 Mar 2006 16:45:34 +0000 Subject: [PATCH] Accessibility: critical fix (editing on), filled empty Alt-link text, times 6 (OU-Bugz: 744) --- course/format/weekscss/format.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/course/format/weekscss/format.php b/course/format/weekscss/format.php index 0dd033a952..573ae7a106 100644 --- a/course/format/weekscss/format.php +++ b/course/format/weekscss/format.php @@ -217,7 +217,7 @@ if (isediting($course->id)) { echo ' '. - '

'; + ''.$streditsummary.'

'; } echo ''; @@ -237,25 +237,25 @@ } else { $strshowonlyweek = get_string("showonlyweek", "", $section); echo ''. - '
'; + ''.$strshowonlyweek.'
'; } if (isediting($course->id)) { if ($thissection->visible) { // Show the hide/show eye echo ''. - '
'; + ''.$strweekhide.'
'; } else { echo ''. - '
'; + ''.$strweekhide.'
'; } if ($section > 1) { // Add a arrow to move section up echo ''. - '
'; + ''.$strmoveup.'
'; } if ($section < $course->numsections) { // Add a arrow to move section down echo ''. - '
'; + ''.$strmovedown.'
'; } } -- 2.39.5