如何设置 MANTIS 中所需的“重现步骤”字段

发布于 2024-12-04 19:58:53 字数 116 浏览 3 评论 0原文

是否可以将“重现步骤”字段设置为必需字段?

从记者那里获得足够的信息总是很困难,所以也许强迫他们填补这个领域会对我们——程序员——有所帮助。

我希望仍然能够毫无麻烦地更新 mantis。

Is this possible to setup Steps To Reproduce field so it's required?

It's always difficult to get enough info from reporters, so maybe forcing them to fill this field will help us - programmers - a little.

I would like to still be able to update mantis without troubles.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

迷荒 2024-12-11 19:58:53

您可以通过将(在 bug_report.php 中)更改为来实现此目的,

$t_bug_data->steps_to_reproduce = gpc_get_string( 'steps_to_reproduce', '' ); 

$t_bug_data->steps_to_reproduce = gpc_get_string( 'steps_to_reproduce' ); 

在高级报告中,它不会显示 *(星号)来表明它是强制性的。您必须自己在 PHP 文件中添加*。

You are able to achieve this by changing, (in bug_report.php)

$t_bug_data->steps_to_reproduce = gpc_get_string( 'steps_to_reproduce', '' ); 

To

$t_bug_data->steps_to_reproduce = gpc_get_string( 'steps_to_reproduce' ); 

But on the advanced report it doesn't show an * (Asterisk) to indicate that it is mandatory. You have to add the * yourself in the PHP file.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文