From a80a772821f0cd8663ee3850564e4a5ae24dc9ac Mon Sep 17 00:00:00 2001 From: moodler Date: Sat, 31 Jan 2004 05:55:11 +0000 Subject: [PATCH] Fixed some hard-coded strings http://moodle.org/bugs/bug.php?op=show&bugid=1011 --- mod/journal/report.php | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/mod/journal/report.php b/mod/journal/report.php index ebe18eb0e2..e6f88e9f84 100644 --- a/mod/journal/report.php +++ b/mod/journal/report.php @@ -35,11 +35,13 @@ $entrybyentry = array () ; } - print_header("$course->shortname: Journals", "$course->fullname", - "id>$course->shortname -> - id>Journals -> - id>$journal->name -> Responses", "", - "", true); + $strentries = get_string("entries", "journal"); + $strjournals = get_string("modulenameplural", "journal"); + + print_header("$course->shortname: $strjournals", "$course->fullname", + "id\">$course->shortname -> + id\">$strjournals -> + id\">$journal->name -> $strentries", "", "", true); if ($data = data_submitted()) { -- 2.39.5