Skip to content

Commit

Permalink
Fix #15540: Wrong example code for custom status translation
Browse files Browse the repository at this point in the history
  • Loading branch information
atrol committed Feb 25, 2013
1 parent b3276bb commit d6619f7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion docbook/administration_guide/en/customizing_mantis.sgml
Expand Up @@ -773,7 +773,7 @@ switch( $g_active_language ) {
$s_testing_bug_button = 'A tester';

$s_email_notification_title_for_status_bug_testing = 'Le bogue suivant est prêt à être TESTE.';
;;

This comment has been minimized.

Copy link
@dregad

dregad Feb 26, 2013

Member

Guess I had been writing too much shell script at work when I made this update ;-)

Thanks for the fix !

This comment has been minimized.

Copy link
@atrol

atrol Feb 26, 2013

Author Member

The first thing I ask users in forum when having problems with status customization is: "Did you follow the steps described at http://www.mantisbt.org/docs/master-1.2.x/en/administration_guide.html#ADMIN.CUSTOMIZE.STATUS"
Now there was a user who followed http://www.mantisbt.org/forums/viewtopic.php?f=3&t=21194 ;-)

break;

default: # english
$s_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,60:testing,80:resolved,90:closed';
Expand All @@ -782,6 +782,7 @@ switch( $g_active_language ) {
$s_testing_bug_button = 'Ready for Testing';

$s_email_notification_title_for_status_bug_testing = 'The following issue is ready for TESTING.';
break;
}
</programlisting>
<warning><para>Do NOT call
Expand Down

0 comments on commit d6619f7

Please sign in to comment.