From 47bf57d6572573f2f6d1b66c045339c4b97112c9 Mon Sep 17 00:00:00 2001 From: stronk7 Date: Sat, 29 Dec 2007 11:54:24 +0000 Subject: [PATCH] Added note about automatic DB creation. MDL-9609 Merged from MOODLE_19_STABLE --- install.php | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) 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') . '
'; -- 2.39.5