From: nfreear Date: Wed, 22 Mar 2006 17:19:46 +0000 (+0000) Subject: Accessibility: fixed bug 4012 x9, added Alt, filled empty Alt-link text. X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=48943f403c11b4f62460cee108f2676cd69af13b;p=moodle.git Accessibility: fixed bug 4012 x9, added Alt, filled empty Alt-link text. --- diff --git a/course/format/topics/format.php b/course/format/topics/format.php index 205cbf9b8a..ad7be023e4 100644 --- a/course/format/topics/format.php +++ b/course/format/topics/format.php @@ -99,6 +99,7 @@ $summaryformatoptions->noclean = true; echo format_text($thissection->summary, FORMAT_HTML, $summaryformatoptions); + //Accessibility: added Alt, filled empty Alt-link text. if (isediting($course->id)) { echo 'id)) { echo ' '. - '

'; + ''.$streditsummary.'

'; } echo ''; @@ -198,38 +199,38 @@ echo ''; if ($displaysection == $section) { // Show the zoom boxes echo ''. - '
'; + ''.$strshowalltopics.'
'; } else { $strshowonlytopic = get_string('showonlytopic', '', $section); echo ''. - '
'; + ''.$strshowonlytopic.'
'; } if (isediting($course->id)) { if ($course->marker == $section) { // Show the "light globe" on/off echo ''. - '
'; + ''.$strmarkedthistopic.'
'; } else { echo ''. - '
'; + ''.$strmarkthistopic.'
'; } if ($thissection->visible) { // Show the hide/show eye echo ''. - '
'; + ''.$strtopichide.'
'; } else { echo ''. - '
'; + ''.$strtopichide.'
'; } 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.'
'; } }