Skip to content

Commit

Permalink
Consistently indent JavaScript includes within <head>
Browse files Browse the repository at this point in the history
  • Loading branch information
davidhicks committed Aug 7, 2010
1 parent ed89d16 commit 549acf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/html_api.php
Expand Up @@ -424,8 +424,8 @@ function require_js( $p_script_path ) {
function html_head_javascript() {
if ( config_get( 'use_javascript' ) ) {
global $g_scripts_included;
echo '<script type="text/javascript" src="' . helper_mantis_url( 'javascript_config.php' ) . '"></script>' . "\n";
echo '<script type="text/javascript" src="' . helper_mantis_url( 'javascript_translations.php' ) . '"></script>' . "\n";
echo "\t<script type=\"text/javascript\" src=\"" . helper_mantis_url( 'javascript_config.php' ) . '"></script>' . "\n";
echo "\t<script type=\"text/javascript\" src=\"" . helper_mantis_url( 'javascript_translations.php' ) . '"></script>' . "\n";
html_javascript_link( 'ajax.js' );
html_javascript_link( 'jquery.js' );
html_javascript_link( 'jquery-ui.js' );
Expand Down

0 comments on commit 549acf4

Please sign in to comment.