From: nfreear Date: Wed, 15 Mar 2006 10:26:56 +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=ce148ff57eac06d3717fe64490e6d2edbc14ad5e;p=moodle.git Accessibility: critical fix (editing on), filled empty Alt-link text, times 6 (OU-Bugz: 744) --- diff --git a/course/format/weeks/format.php b/course/format/weeks/format.php index 707852b316..2c1be8c1a3 100644 --- a/course/format/weeks/format.php +++ b/course/format/weeks/format.php @@ -183,7 +183,7 @@ if (isediting($course->id)) { echo ' '. - '

'; + ''.$streditsummary.'

'; } echo ''; @@ -203,25 +203,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.'
'; } }