Skip to content

Commit

Permalink
Specific final message when generating SQL
Browse files Browse the repository at this point in the history
Remind user that DB has not been created/upgraded, and that they should
do so.

Fixes #26663
  • Loading branch information
dregad committed Feb 17, 2020
1 parent 53038ce commit 449844c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion admin/install.php
Expand Up @@ -1461,12 +1461,17 @@ function print_test( $p_test_description, $p_result, $p_hard_fail = true, $p_mes
<tr>
<td>
<span class="bigger-130">
<?php if( $f_log_queries ) { ?>
SQL script generated successfully.
Use it to manually create or upgrade your database.
<?php } else { ?>
MantisBT was installed successfully.
<?php if( $f_db_exists ) {?>
<?php if( $f_db_exists ) { ?>
<a href="../login_page.php">Continue</a> to log in.
<?php } else { ?>
Please log in as the administrator and <a href="../login_page.php">create</a> your first project.
</span>
<?php } ?>
<?php } ?>
</td>
<?php print_test_result( GOOD ); ?>
Expand Down

0 comments on commit 449844c

Please sign in to comment.