Skip to content

Commit

Permalink
Fix merge issues:
Browse files Browse the repository at this point in the history
- Use the same CDN model as in matisbt/master
  • Loading branch information
syncguru committed Nov 24, 2015
1 parent 95a97ff commit 9f5e2ef
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 9 deletions.
1 change: 0 additions & 1 deletion core/error_api.php
Expand Up @@ -282,7 +282,6 @@ function error_handler( $p_type, $p_error, $p_file, $p_line, array $p_context )
layout_footer();
}
} else {
html_base_javascripts();
layout_body_javascript();
html_body_end();
html_end();
Expand Down
7 changes: 2 additions & 5 deletions core/layout_api.php
Expand Up @@ -88,6 +88,8 @@ function layout_page_header_begin( $p_page_title = null ) {
# Advertise the availability of the browser search plug-ins.
echo "\t", '<link rel="search" type="application/opensearchdescription+xml" title="MantisBT: Text Search" href="' . string_sanitize_url( 'browser_search_plugin.php?type=text', true ) . '" />' . "\n";
echo "\t", '<link rel="search" type="application/opensearchdescription+xml" title="MantisBT: Issue Id" href="' . string_sanitize_url( 'browser_search_plugin.php?type=id', true ) . '" />' . "\n";

html_head_javascript();
}

/**
Expand Down Expand Up @@ -164,8 +166,6 @@ function layout_page_end( $p_file = null ) {
layout_scroll_up_button();

layout_main_container_end();

html_base_javascripts();
layout_body_javascript();

html_body_end();
Expand All @@ -191,8 +191,6 @@ function layout_admin_page_end() {
layout_scroll_up_button();

layout_main_container_end();

html_base_javascripts();
layout_body_javascript();

html_body_end();
Expand Down Expand Up @@ -342,7 +340,6 @@ function layout_login_page_end() {
echo '</div>';
layout_main_content_end();
layout_main_container_end();
html_base_javascripts();
layout_body_javascript();

echo '</body>', "\n";
Expand Down
1 change: 0 additions & 1 deletion print_all_bug_page.php
Expand Up @@ -246,7 +246,6 @@
</table>
</form>
<?php
html_base_javascripts();
layout_body_javascript();
html_body_end();
html_end();
1 change: 0 additions & 1 deletion print_all_bug_page_word.php
Expand Up @@ -561,7 +561,6 @@
} # end in_array
} # end main loop

html_base_javascripts();
layout_body_javascript();
html_body_end();
html_end();
1 change: 0 additions & 1 deletion print_bug_page.php
Expand Up @@ -583,7 +583,6 @@
?>

<?php
html_base_javascripts();
layout_body_javascript();
html_body_end();
html_end();

0 comments on commit 9f5e2ef

Please sign in to comment.