6

我想向 Mantis Bug 跟踪器添加一个名为“On Hold”的自定义状态。根据我在网上找到的一些博客,我在 config_local.php 中添加了以下几行:

$g_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,55:onhold,80:resolved,90:closed';
$g_status_colors['onhold'] = '#cceedd';
$s_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,55:onhold,80:resolved,90:closed';

但是,当我将此状态分配给错误时,它会在下拉列表中显示为@55@。

任何想法为什么会这样?

4

2 回答 2

6

请参阅有关自定义状态值的 Mantis 参考

定义一个将新状态映射到的常量。在 mantisbt 主目录的新文件 custom_constants_inc.php 中:

<?php define ( 'TEST', 60 ); ?>

定义所需的语言字符串。这可能需要用多种语言定义。在 mantisbt 主目录中的新文件 custom_strings_inc.php 中:

<?php
$s_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned, 60:to be tested,80:resolved,90:closed';
$s_to_be_tested_bug_button = "Issue Ready to Test";
$s_to_be_tested_bug_title = "Set Issue Ready to Test"; 
$s_email_notification_title_for_status_bug_to_be_tested = "The following issue is ready TO BE TESTED.";
?>

定义所需的任何配置。在 mantisbt 主目录中的现有文件 config_inc.php 中:

$g_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned, 60:to be tested,80:resolved,90:closed'; # Status color additions
$g_status_colors['to be tested'] = '#ACE7AE';                            

将状态添加到 config_inc.php 中定义的任何工作流。

于 2012-05-10T08:41:05.447 回答
1

我正在使用 MantisBT 2.1.0 版并且遇到了同样的问题。custom_constants_inc.php对我来说,解决方法是将文件custom_strings_inc.php从 mantisbt 主目录移动到 config 目录。

于 2017-02-23T04:48:26.297 回答