From: stronk7 Date: Sat, 29 Dec 2007 11:54:24 +0000 (+0000) Subject: Added note about automatic DB creation. MDL-9609 X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=47bf57d6572573f2f6d1b66c045339c4b97112c9;p=moodle.git Added note about automatic DB creation. MDL-9609 Merged from MOODLE_19_STABLE --- diff --git a/install.php b/install.php index 52d19b0df0..1cd2368f9b 100644 --- a/install.php +++ b/install.php @@ -599,9 +599,13 @@ if (isset($_GET['help'])) { /// from the standard one to show better instructions for each DB if ($nextstage == DATABASE) { echo ''; - echo '
' . get_string('databasesettingssub_mysql', 'install') . '
'; + echo '
' . get_string('databasesettingssub_mysql', 'install'); + echo '

' . get_string('databasesettingswillbecreated', 'install') . '

'; + echo '
'; - echo '
' . get_string('databasesettingssub_mysqli', 'install') . '
'; + echo '
' . get_string('databasesettingssub_mysqli', 'install'); + echo '

' . get_string('databasesettingswillbecreated', 'install') . '

'; + echo '
'; echo '
' . get_string('databasesettingssub_postgres7', 'install') . '
';