]> git.mjollnir.org Git - moodle.git/commitdiff
Added note about automatic DB creation. MDL-9609
authorstronk7 <stronk7>
Sat, 29 Dec 2007 11:54:24 +0000 (11:54 +0000)
committerstronk7 <stronk7>
Sat, 29 Dec 2007 11:54:24 +0000 (11:54 +0000)
Merged from MOODLE_19_STABLE

install.php

index 52d19b0df06d09f245e9f6b277afcc2c13169a1e..1cd2368f9bc9f4024f134ee97f0ac585e6cf1657 100644 (file)
@@ -599,9 +599,13 @@ if (isset($_GET['help'])) {
                   /// 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>';