mirror of
https://github.com/moodle/moodle.git
synced 2025-04-25 10:26:17 +02:00
Merge branch 'MDL-44468_master' of git://github.com/ds125v/moodle
This commit is contained in:
commit
c8ca0cea77
@ -221,11 +221,11 @@ class core_backup_renderer extends plugin_renderer_base {
|
||||
*/
|
||||
public function backup_details_unknown(moodle_url $nextstageurl) {
|
||||
|
||||
$html = html_writer::start_tag('div', array('class' => 'unknownformat'));
|
||||
$html .= $this->output->heading(get_string('errorinvalidformat', 'backup'), 2, 'notifyproblem');
|
||||
$html .= html_writer::tag('div', get_string('errorinvalidformatinfo', 'backup'), array('class' => 'notifyproblem'));
|
||||
$html = html_writer::start_div('unknownformat');
|
||||
$html .= $this->output->heading(get_string('errorinvalidformat', 'backup'), 2);
|
||||
$html .= $this->output->notification(get_string('errorinvalidformatinfo', 'backup'), 'notifyproblem');
|
||||
$html .= $this->output->single_button($nextstageurl, get_string('continue'), 'post');
|
||||
$html .= html_writer::end_tag('div');
|
||||
$html .= html_writer::end_div();
|
||||
|
||||
return $html;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user