]> git.mjollnir.org Git - moodle.git/commitdiff
MDL-17171 Glossary: Correct breadcrumb when exporting glossary. Merged from 19_STABLE
authorstronk7 <stronk7>
Sun, 9 Nov 2008 22:57:59 +0000 (22:57 +0000)
committerstronk7 <stronk7>
Sun, 9 Nov 2008 22:57:59 +0000 (22:57 +0000)
lang/en_utf8/glossary.php
mod/glossary/export.php

index 01b7e3fc569273dade431f713238015815a194c8..b86bd39d52c5033c4a6aaba84f3c4c7bd6959252 100644 (file)
@@ -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';
index c64c768b3bcfa268357c60b6c11a0f53bb21d272..dfe9d5aa1f747cdc30188fbc4ee3615b2324c385 100644 (file)
@@ -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));