elearningsoftware / moodle-mod_journal

The Moodle journal module for moodle 2.0+
https://moodle.org/plugins/view.php?plugin=mod_journal
16 stars 34 forks source link

Journal activity name appears twice in breadcrumbs #59

Closed chiaravicere closed 2 years ago

chiaravicere commented 4 years ago

This doesn't make any sense to me. It is confusing to have a second working link to the present page.

argwallace commented 3 years ago

This can be fixed by going into the file "view.php" and comment out line 57 so it looks like this:

// $PAGE->navbar->add($journalname);

drachels commented 3 years ago

I think this is actually a bug. Instead of listing the Journal name again, it should be using a language string that tells you what part of the Journal you are looking at. e.g. $PAGE->navbar->add(get_string("viewmyentries", "journal")); with an appropriate language string. Same thing in the report.php page where you might use: $PAGE->navbar->add(get_string("gradeentries", "journal")); also with an appropriate language string.

adrian-sarmas commented 2 years ago

This has been fixed in the latest release.