From 7ee256eed395233616bf9ddcb079ffbf63fb4d97 Mon Sep 17 00:00:00 2001 From: toyomoyo Date: Mon, 13 Nov 2006 02:20:47 +0000 Subject: [PATCH] fix for MDL-7474, provide alt text for ascending/descending icons in glossary --- lang/en_utf8/moodle.php | 2 ++ mod/glossary/lib.php | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/lang/en_utf8/moodle.php b/lang/en_utf8/moodle.php index 7ab7aa3a7d..82119428bf 100644 --- a/lang/en_utf8/moodle.php +++ b/lang/en_utf8/moodle.php @@ -112,6 +112,7 @@ $string['answer'] = 'Answer'; $string['approve'] = 'Approve'; $string['areyousuretorestorethis'] = 'Do you want to continue?'; $string['areyousuretorestorethisinfo'] = 'Later in this process you will have a choice of adding this backup to an existing course or creating a completely new course.'; +$string['asc'] = 'Ascending'; $string['assessment'] = 'Assessment'; $string['assignadmins'] = 'Assign admins'; $string['assigncreators'] = 'Assign creators'; @@ -357,6 +358,7 @@ $string['deletingcourse'] = 'Deleting $a'; $string['deletingexistingcoursedata'] = 'Deleting existing course data'; $string['deletingolddata'] = 'Deleting old data'; $string['department'] = 'Department'; +$string['desc'] = 'Descending'; $string['description'] = 'Description'; $string['deselectall'] = 'Deselect all'; $string['detailedless'] = 'Less detailed'; diff --git a/mod/glossary/lib.php b/mod/glossary/lib.php index 5096f3be04..757b12b3bd 100644 --- a/mod/glossary/lib.php +++ b/mod/glossary/lib.php @@ -1482,7 +1482,7 @@ global $CFG; $neworder = '&sortorder=asc'; $newordertitle = $asc; } - $icon = " \"\""; + $icon = " \""."; } else { if ( $sortkey != 'CREATION' and $sortkey != 'UPDATE' and $sortkey != 'FIRSTNAME' and $sortkey != 'LASTNAME' ) { -- 2.39.5