We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa350fc commit bef89f0Copy full SHA for bef89f0
1 file changed
classes/output/renderer.php
@@ -98,7 +98,7 @@ public function render(\renderable $widget) {
98
$matches = null;
99
100
if (preg_match($specialrenderers, $fullpath, $matches)
101
- && file_exists($CFG->dirroot . '/course/format/multitopic/templates/courseformat/' . $matches['template'])) { // ADDED.
+ && file_exists($CFG->dirroot . '/course/format/multitopic/templates/courseformat/' . $matches['template'])) {
102
$data = $widget->export_for_template($this);
103
return $this->render_from_template('format_multitopic/courseformat/' . $matches['template'], $data); // CHANGED.
104
}
0 commit comments