Skip to content

Commit

Permalink
Use JQUERY_VERSION constant in install.php
Browse files Browse the repository at this point in the history
Commit fc9a332 missed one occurence of
jQuery version number.

Issue #19932
  • Loading branch information
dregad committed Jun 5, 2016
1 parent c8da887 commit e753cca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/install.php
Expand Up @@ -99,7 +99,7 @@ function print_test( $p_test_description, $p_result, $p_hard_fail = true, $p_mes
html_css_link( 'admin.css' );
html_content_type();
html_title( 'Administration - Installation' );
html_javascript_link( 'jquery-1.11.3.min.js' );
html_javascript_link( 'jquery-' . JQUERY_VERSION . '.min.js' );
html_javascript_link( 'install.js' );
html_head_end();
?>
Expand Down

0 comments on commit e753cca

Please sign in to comment.