Skip to content

Commit

Permalink
MDL-42209 backup: fixed wrong icon being displayed when restoring course
Browse files Browse the repository at this point in the history
  • Loading branch information
FilipBenco authored and mdjnelson committed Oct 14, 2013
1 parent f8eff10 commit be885f1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backup/util/ui/renderer.php
Expand Up @@ -91,7 +91,7 @@ public function dependency_notification($message) {
*/ */
public function backup_details($details, $nextstageurl) { public function backup_details($details, $nextstageurl) {
$yestick = $this->output->pix_icon('i/valid', get_string('yes')); $yestick = $this->output->pix_icon('i/valid', get_string('yes'));
$notick = $this->output->pix_icon('i/valid', get_string('no')); $notick = $this->output->pix_icon('i/invalid', get_string('no'));


$html = html_writer::start_tag('div', array('class'=>'backup-restore')); $html = html_writer::start_tag('div', array('class'=>'backup-restore'));


Expand Down

0 comments on commit be885f1

Please sign in to comment.