Search found 3 matches

by mishutka
02 Oct 2006, 08:33
Forum: Customizations
Topic: How to show "Severity" of issue in changelog?
Replies: 4
Views: 7908

Even more customized output

That is my final solution :)
function custom_function_override_changelog_print_issue( $p_issue_id )
{
$t_bug = bug_get( $p_issue_id );

$sCategory = ' <b>[' . $t_bug->category . '][' . get_enum_element('severity', $t_bug->severity)
. '-' . get_enum_element('priority', $t_bug->priority) . ']</b ...
by mishutka
02 Oct 2006, 08:03
Forum: Customizations
Topic: How to show "Severity" of issue in changelog?
Replies: 4
Views: 7908

Solution

This was solved by adding something like the following to custom_functions_inc.php
function custom_function_override_changelog_print_issue( $p_issue_id )
{
$t_bug = bug_get( $p_issue_id );
echo '#', string_get_bug_view_link( $p_issue_id ), ' <b>[', get_enum_element( 'severity', $t_bug->severity ...
by mishutka
02 Oct 2006, 06:46
Forum: Customizations
Topic: How to show "Severity" of issue in changelog?
Replies: 4
Views: 7908

How to show "Severity" of issue in changelog?

Is there any way to show "Severity" of an issue in changelog page?

We want to get something like this:
- 040: [Interface][feature] Allow to user to re-enter registrtion key if old one has not been expired yet. (MiSHuTka)

Thank you in advance.