mirror of
https://github.com/moodle/moodle.git
synced 2025-01-31 04:33:13 +01:00
MDL-38850: Fixed Horizontal bar issue in lesson
This commit is contained in:
parent
68291f2d57
commit
3266d14bbe
@ -2383,8 +2383,11 @@ abstract class lesson_page extends lesson_base {
|
||||
$this->properties->contentsformat = FORMAT_HTML;
|
||||
}
|
||||
$context = context_module::instance($PAGE->cm->id);
|
||||
$contents = file_rewrite_pluginfile_urls($this->properties->contents, 'pluginfile.php', $context->id, 'mod_lesson', 'page_contents', $this->properties->id); // must do this BEFORE format_text()!!!!!!
|
||||
return format_text($contents, $this->properties->contentsformat, array('context'=>$context, 'noclean'=>true)); // page edit is marked with XSS, we want all content here
|
||||
$contents = file_rewrite_pluginfile_urls($this->properties->contents, 'pluginfile.php', $context->id, 'mod_lesson',
|
||||
'page_contents', $this->properties->id); // Must do this BEFORE format_text()!
|
||||
return format_text($contents, $this->properties->contentsformat,
|
||||
array('context' => $context, 'noclean' => true,
|
||||
'overflowdiv' => true)); // Page edit is marked with XSS, we want all content here.
|
||||
} else {
|
||||
return '';
|
||||
}
|
||||
|
@ -301,7 +301,9 @@ class mod_lesson_renderer extends plugin_renderer_base {
|
||||
|
||||
$pagetable = $page->display_answers($pagetable);
|
||||
|
||||
$content .= html_writer::start_tag('div', array('class' => 'no-overflow'));
|
||||
$content .= html_writer::table($pagetable);
|
||||
$content .= html_writer::end_tag('div');
|
||||
|
||||
if ($canedit) {
|
||||
$content .= $this->add_page_links($lesson, $pageid);
|
||||
|
@ -591,7 +591,9 @@ if ($action === 'delete') {
|
||||
} else {
|
||||
$table->data[] = array(get_string('didnotanswerquestion', 'lesson'), " ");
|
||||
}
|
||||
echo html_writer::start_tag('div', array('class' => 'no-overflow'));
|
||||
echo html_writer::table($table);
|
||||
echo html_writer::end_tag('div');
|
||||
}
|
||||
} else {
|
||||
print_error('unknowaction');
|
||||
|
Loading…
x
Reference in New Issue
Block a user