Skip to content

Commit

Permalink
Remove incorrect “Upgrade Your Installation"
Browse files Browse the repository at this point in the history
Don't show "Upgrade Your Installation" when switching admin bar tabs

Fixes #21602
  • Loading branch information
syncguru authored and vboctor committed Aug 24, 2016
1 parent c7787f9 commit 2a64d17
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions admin/email_queue.php
Expand Up @@ -26,6 +26,9 @@

require_once( dirname( dirname( __FILE__ ) ) . '/core.php' );

# Load schema version needed to render admin menu bar
require_once( 'schema.php' );

access_ensure_global_level( config_get_global( 'admin_site_threshold' ) );

layout_page_header();
Expand Down
3 changes: 3 additions & 0 deletions admin/system_utils.php
Expand Up @@ -26,6 +26,9 @@

require_once( dirname( dirname( __FILE__ ) ) . '/core.php' );

# Load schema version needed to render admin menu bar
require_once( 'schema.php' );

access_ensure_global_level( config_get_global( 'admin_site_threshold' ) );

layout_page_header( 'MantisBT Administration - System Utilities' );
Expand Down
3 changes: 3 additions & 0 deletions admin/test_langs.php
Expand Up @@ -29,6 +29,9 @@

require_once( $t_mantis_dir . 'core.php' );

# Load schema version needed to render admin menu bar
require_once( 'schema.php' );

access_ensure_global_level( config_get_global( 'admin_site_threshold' ) );

if( function_exists( 'xdebug_disable' ) ) {
Expand Down

0 comments on commit 2a64d17

Please sign in to comment.