Hidden fields

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
M@rce
Posts: 99
Joined: 05 May 2011, 20:46
Location: Montevideo - Uruguay

Hidden fields

Post by M@rce »

Hello everybody,

For special requeriment, I want to hide some fields in the bug_report_page like severity, priority, aditional information and visibility, anybody know to do this?

Thanks.
"La inteligencia consiste no sólo en el conocimiento, sino también en la destreza de aplicar los conocimientos en la práctica."
Aristóteles
atrol
Site Admin
Posts: 8575
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: Hidden fields

Post by atrol »

Change the following setting in config_inc.php

Code: Select all

       /**
        * An array of the fields to show on the bug report page.
        *
        * The following fields can not be included:
        * id, project, date_submitted, last_updated, status,
        * resolution, tags, fixed_in_version, projection, eta,
        * reporter.
        *
        * The following fields must be included:
        * category_id, summary, description.
        *
        * To overload this setting per project, then the settings must be included in the database through
        * the generic configuration form.
        *
        * @global array $g_bug_report_page_fields
        */
       $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',
       );
Please use Search before posting and read the Manual
M@rce
Posts: 99
Joined: 05 May 2011, 20:46
Location: Montevideo - Uruguay

[Resolved] Hidden fields

Post by M@rce »

Thank you!
"La inteligencia consiste no sólo en el conocimiento, sino también en la destreza de aplicar los conocimientos en la práctica."
Aristóteles
Post Reply