From: nfreear Date: Tue, 14 Mar 2006 16:45:34 +0000 (+0000) Subject: Accessibility: critical fix (editing on), filled empty Alt-link text, times 6 (OU... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=b3d26d8d57704dfde03d716ed234a3eb4583aaf6;p=moodle.git Accessibility: critical fix (editing on), filled empty Alt-link text, times 6 (OU-Bugz: 744) --- 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.'
'; } }