Hi
I would like to delete from the report issue page (when the user create a issue), le handler_id field ?
Someone knows how to do ?
Thanks you for your help.
How to customise the report issue page ?
Moderators: Developer, Contributor
-
JJacques_adt34
- Posts: 6
- Joined: 23 Apr 2012, 11:01
Re: How to customise the report issue page ?
I have found !!
Delete the line
handler,
in
$g_bug_report_page_fields = array(
'category_id',
'view_state',
'handler',
'priority',
'severity',
'reproducibility',
'platform',
'os',
'os_version',
'product_version',
'product_build',
'target_version',
'summary',
'description',
'additional_info',
'steps_to_reproduce',
'attachments',
'due_date',
);
in config_defaults_inc.php
Since v1.2 only...
Delete the line
handler,
in
$g_bug_report_page_fields = array(
'category_id',
'view_state',
'handler',
'priority',
'severity',
'reproducibility',
'platform',
'os',
'os_version',
'product_version',
'product_build',
'target_version',
'summary',
'description',
'additional_info',
'steps_to_reproduce',
'attachments',
'due_date',
);
in config_defaults_inc.php
Since v1.2 only...
Re: How to customise the report issue page ?
You should never ever change config_defaults_inc.php as you might get problems when updating to a newer version at a later time.
Customizing is done by copying the option you want to modfiy from config_defaults_inc.php to config_inc.php and changing it the way you want in config_inc.php
Customizing is done by copying the option you want to modfiy from config_defaults_inc.php to config_inc.php and changing it the way you want in config_inc.php