Skip to content

Commit

Permalink
fixed fatal errors
Browse files Browse the repository at this point in the history
  • Loading branch information
skodak committed Aug 5, 2010
1 parent c68287a commit 0e8205a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions admin/innodb.php
Expand Up @@ -36,8 +36,8 @@

} else {
$optionsyes = array('confirm'=>'1', 'sesskey'=>sesskey());
$formcontinue = new single_button(new moodle_url('innodb.php', $optionsyes), get_string('yes'));
$formcancel = new single_button('index.php', get_string('no'), 'get');
$formcontinue = new single_button(new moodle_url('/admin/innodb.php', $optionsyes), get_string('yes'));
$formcancel = new single_button(new moodle_url('/admin/index.php'), get_string('no'), 'get');
echo $OUTPUT->confirm('Are you sure you want convert all your tables to the InnoDB format?', $formcontinue, $formcancel);
echo $OUTPUT->footer();
}
Expand Down

0 comments on commit 0e8205a

Please sign in to comment.