diff -r mantis-1.1.0/config_defaults_inc.php mantis-1.1.1/config_defaults_inc.php 143a144,163 > ############################# > # Look & Feel Customizations > ############################# > > # Parameters of the top logo. Set g_top_logo_enabled to OFF to get rid of the logo completely > $g_logo_enabled = ON; > $g_logo_file = 'images/mantis_logo.gif'; > $g_logo_width = 242; > $g_logo_height = 102; > > # set to OFF if you do not want image to redirect to other location when clicked > $g_logo_url_enabled = ON; > $g_logo_url = 'http://www.mantisbt.org/'; > > # position of the logo on the LOGIN page and the main page. These are HTML values of 'align' > # http://www.w3.org/TR/html401/present/graphics.html#h-15.1.2 > # use either 'left', 'right' or 'center' > $g_logo_main_align = 'left'; > $g_logo_login_align = 'center'; > diff -r mantis-1.1.0/core/html_api.php mantis-1.1.1/core/html_api.php 310,314c310,315 < if ( is_page_name( 'login_page' ) ) { < $t_align = 'center'; < } else { < $t_align = 'left'; < } --- > if( config_get('logo_enabled') == ON ) { > if ( is_page_name( 'login_page' ) ) { > $t_align = config_get('logo_login_align'); > } else { > $t_align = config_get('logo_main_align'); > } 316,318c317,324 < echo '
'; < echo 'Mantis Bugtracker'; < echo '
'; --- > $image_tag = sprintf('', config_get('logo_width'), config_get('logo_height'), config_get('logo_file')); > > if( config_get('logo_url_enabled') == ON ) { > printf( '
%s
', $t_align, config_get('logo_url'), $image_tag ); > } else { > printf( '
%s
', $t_align, $image_tag ); > } > }