Report issue pqge problem

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
abdou6974
Posts: 2
Joined: 14 Apr 2022, 14:23

Report issue pqge problem

Post by abdou6974 »

Hi everyone!

I hope you're all well !

as soon as I create a configuration "bug_report_page_fields" I have the televerser section that disappears I do not understand why.

I'm a novice in this field

I tried to add values such as attachment or attachment count.

I can't do it



here is the value :

array (
0 => 'id',
1 => 'project_id',
2 => 'reporter_id',
3 => 'handler_id',
4 => 'priority',
5 => 'severity',
6 => 'reproducibility',
7 => 'version',
8 => 'category_id',
9 => 'date_submitted',
10 => 'os',
11 => 'os_build',
12 => 'platform',
13 => 'view_state',
14 => 'last_updated',
15 => 'summary',
16 => 'status',
17 => 'resolution',
18 => 'fixed_in_version',
)

can you help me please. :? :? :? :?
Soumaya
Posts: 5
Joined: 27 Apr 2022, 12:30

Re: Report issue pqge problem

Post by Soumaya »

When you check the administrator guide, here are the possible values for that configuration:
$g_bug_report_page_fields
An array of optional fields to show on the bug report page.
The following optional fields are allowed: additional_info, attachments, category_id, due_date, eta, handler, monitors, os, os_build, platform, priority, product_build, product_version, reproducibility, resolution, severity, status, steps_to_reproduce, tags, target_version, view_state.
Maybe the one you're looking for is attachments.

Here's my working configuration as an example:

Code: Select all

$g_bug_report_page_fields = array (
'category_id',
'severity',
'reproducibility',
'additional_info',
'attachments',
);
Post Reply