Merge branch 'MDL-52513_29' of https://github.com/rushi963/moodle into MOODLE_29_STABLE

This commit is contained in:
Dan Poltawski
2016-03-02 13:21:41 +08:00
+2 -1
View File
@@ -78,7 +78,8 @@ class core_grading_renderer extends plugin_renderer_base {
public function management_message($message) {
$this->page->requires->strings_for_js(array('clicktoclose'), 'core_grading');
$this->page->requires->yui_module('moodle-core_grading-manage', 'M.core_grading.init_manage');
return $this->output->box(format_string($message).html_writer::tag('span', ''), 'message', 'actionresultmessagebox');
return $this->output->box(format_string($message) . ' - ' . html_writer::tag('span', ''), 'message',
'actionresultmessagebox');
}
/**