Mantis:查看问题时如何更改以自动显示附加图像?

发布于 2024-08-05 00:04:25 字数 89 浏览 5 评论 0原文

我可以将图像上传到 mantis issues。我想调整 mantis 代码或配置以自动显示图像(gif、png、jpg)。

有人成功做到这一点吗?

I am able to upload images to mantis issues. I'd like to tweak the mantis code or config to auto-display images (gif, png, jpg).

Has anybody been successful in doing this?

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

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

发布评论

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

评论(1

风吹短裙飘 2024-08-12 00:04:25

该行为由 config_inc.php 中的 $g_preview_attachments_inline_max_size 变量控制,

根据 Mantis 手册

此功能适用于 bmp、jpg、gif、
以及附加的 png 文件
错误。如果文件大小小于
指定值,实际图像
还预览了错误 [...]

虽然手册上说默认值为 0(禁用功能),但在 Mantis 1.2.0 中它是 256KBytes:

$g_preview_attachments_inline_max_size = 256 * 1024;

The behaviour is controlled by the $g_preview_attachments_inline_max_size variable in config_inc.php

According to the Mantis manual:

This feature applies to bmp, jpg, gif,
and png files that are attached to
bugs. If the file size is smaller than
the specified values, the actual image
is also previewed with the bugs [...]

Although the manual says the default value is 0 (feature disabled), in Mantis 1.2.0 it is 256KBytes:

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