From: stronk7 Date: Sun, 9 Nov 2008 22:57:59 +0000 (+0000) Subject: MDL-17171 Glossary: Correct breadcrumb when exporting glossary. Merged from 19_STABLE X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=80ddc208b7d1708e67afce4f88ee8dca60f2d9cf;p=moodle.git MDL-17171 Glossary: Correct breadcrumb when exporting glossary. Merged from 19_STABLE --- diff --git a/lang/en_utf8/glossary.php b/lang/en_utf8/glossary.php index 01b7e3fc56..b86bd39d52 100644 --- a/lang/en_utf8/glossary.php +++ b/lang/en_utf8/glossary.php @@ -117,6 +117,7 @@ $string['explainimport'] = 'You must specify the file to import and define the c $string['explainspecial'] = 'Shows entries that do not begin with a letter'; $string['exportedentry'] = 'Exported entry'; $string['exportentries'] = 'Export entries'; +$string['exportentriestoxml'] = 'Export entries to XML file'; $string['exportfile'] = 'Export entries to file'; $string['exportglossary'] = 'Export glossary'; $string['exporttomainglossary'] = 'Export to main glossary'; diff --git a/mod/glossary/export.php b/mod/glossary/export.php index c64c768b3b..dfe9d5aa1f 100644 --- a/mod/glossary/export.php +++ b/mod/glossary/export.php @@ -35,9 +35,9 @@ $strsearchindefinition = get_string("searchindefinition", "glossary"); $strsearch = get_string("search"); $strexportfile = get_string("exportfile", "glossary"); - $strexportentries = get_string('exportentries', 'glossary'); + $strexportentries = get_string('exportentriestoxml', 'glossary'); - $navigation = build_navigation('', $cm); + $navigation = build_navigation($strexportentries, $cm); print_header_simple(format_string($glossary->name), "",$navigation, "", "", true, update_module_button($cm->id, $course->id, $strglossary), navmenu($course, $cm));