Skip to content

Commit

Permalink
Added note about automatic DB creation. MDL-9609
Browse files Browse the repository at this point in the history
Merged from MOODLE_19_STABLE
  • Loading branch information
stronk7 committed Dec 29, 2007
1 parent 01d9071 commit 47bf57d
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions install.php
Original file line number Diff line number Diff line change
Expand Up @@ -599,9 +599,13 @@
/// from the standard one to show better instructions for each DB
if ($nextstage == DATABASE) {
echo '<script type="text/javascript" defer="defer">window.onload=toggledbinfo;</script>';
echo '<div id="mysql" name="mysql">' . get_string('databasesettingssub_mysql', 'install') . '</div>';
echo '<div id="mysql" name="mysql">' . get_string('databasesettingssub_mysql', 'install');
echo '<p align="center">' . get_string('databasesettingswillbecreated', 'install') . '</p>';
echo '</div>';

echo '<div id="mysqli" name="mysqli">' . get_string('databasesettingssub_mysqli', 'install') . '</div>';
echo '<div id="mysqli" name="mysqli">' . get_string('databasesettingssub_mysqli', 'install');
echo '<p align="center">' . get_string('databasesettingswillbecreated', 'install') . '</p>';
echo '</div>';

echo '<div id="postgres7" name="postgres7">' . get_string('databasesettingssub_postgres7', 'install') . '</div>';

Expand Down

0 comments on commit 47bf57d

Please sign in to comment.