不显示Mantis LOGO

 1、在config_inc.php中增加
  1. $g_show_mantis_logo = OFF;
2、修改html_api.php,在html_top_banner函数开始添加以下两行代码
  1.     function html_top_banner() {
  2.         if ("OFF" == config_get('show_mantis_logo'))
  3.           return false;

3、修改html_api.php,在html_footer函数末端代码添加对show_mantis_logo的判断(带N个加号行系添加的代码)
  1.     if (ON == config_get('show_mantis_logo')) { //+++++++++++++++
  2.           echo ''"/n/t"'';
  3.           echo ' . helper_mantis_url( 'images/mantis_logo_button.gif' ) . '" width="88" height="35" alt="Powered by Mantis Bugtracker" border="0" />';
  4.           echo '
'"/n"''"/n";
  •       }     //+++++++++++++++


  • 你可能感兴趣的:(Mantis)