MDL-38850: Fixed Horizontal bar issue in lesson

This commit is contained in:
Prateek Sachan 2013-10-28 11:03:17 +08:00 committed by rwijaya
parent 68291f2d57
commit 3266d14bbe
3 changed files with 9 additions and 2 deletions

View File

@ -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 '';
}

View File

@ -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);

View File

@ -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');