fix: use formatted course module name in activity script
Updated the rendering logic to use the formatted course module name instead of the plain name when generating the activity script. This ensures consistency in presentation and improves readability. Fixes issues with name formatting in displayed activities.
This commit is contained in:
parent
a40ffdf41f
commit
dba761ac70
1 changed files with 1 additions and 1 deletions
2
lib.php
2
lib.php
|
@ -53,7 +53,7 @@ function mod_exp360_cm_info_dynamic(cm_info $cm)
|
|||
|
||||
$renderer = $PAGE->get_renderer('mod_exp360');
|
||||
$modals = $renderer->render_modals();
|
||||
$script = $renderer->render_activity($cm->id, $cm->name);
|
||||
$script = $renderer->render_activity($cm->id, $cm->get_formatted_name());
|
||||
|
||||
$cm->set_no_view_link();
|
||||
$cm->set_content($modals . $script);
|
||||
|
|
Loading…
Reference in a new issue