Skip to content

Commit

Permalink
Install: reset button does not work at stage 2
Browse files Browse the repository at this point in the history
This was caused by the install.js scripts only being loaded at stage 1.

Fixes #26664
  • Loading branch information
dregad committed Feb 18, 2024
1 parent 6da6fb0 commit fe630fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/install.php
Expand Up @@ -139,7 +139,7 @@ function_exists( 'mysqli_stmt_get_result' ),

layout_page_header_begin( 'Administration - Installation' );
# Javascript is only needed to support input of installation options
if( $t_install_state < 2 ) {
if( $t_install_state <= 2 ) {
html_javascript_link( 'install.js' );
}
layout_page_header_end();
Expand Down

0 comments on commit fe630fa

Please sign in to comment.