View Issue Details

IDProjectCategoryView StatusLast Update
0004448mantisbtemailpublic2004-09-12 08:27
ReporterWandererAssigned Tothraxisp  
PrioritynormalSeveritymajorReproducibilityalways
Status closedResolutionfixed 
PlatformAnyOSAnyOS VersionAny
Product Version0.19.0rc1 
Fixed in Version0.19.0 
Summary0004448: Custom severity and status shown in mail as code
Description

Custom severity status, used in Mantis installation, after update to RC shown in ,ail with corresponding CODE, not name

Project: The Bat
Issue ID: 3467
Category: Filters
Reproducibility: always
Severity: @55@

Project: The Bat
Issue ID: 1908
Category: Mail Management
Reproducibility: N/A
Severity: minor
Priority: normal
Status: @60@
Priority: normal
Status: new

Steps To Reproduce

Try custom severity?!

Additional Information

No problems with standard values, no problems in web-interface - all show in pages correctly
Used config (related parts)
config_inc.php


$g_severity_enum_string = '10:feature, 20:trivial, 30:text, 40:tweak, 50:minor, 55:usability, 60:major, 70:crash, 80:block';
$g_status_enum_string = '10:new, 15:reviewed, 20:feedback, 25:in work, 40:confirmed, 30:acknowledged, 50:assigned, 70:verify wait, 60:verify fail, 80:resolved, 90:closed';

custom_constant_inc.php

status

define( 'REVIEWED', 15 );
define( 'INWORK', 25 );
define( 'VERIFY_FAIL', 60 );
define( 'VERIFY_WAIT', 70 );

severity

define( 'USABILITY', 55 );

custom_strings_inc.php (part of English part)


if ( $g_active_language === 'english' )
{
$s_severity_enum_string = '10:feature,20:trivial,30:text,40:tweak,50:minor,55:usability,60:major,70:crash,80:block';
$s_status_enum_string = '10:new,15:reviewed,20:feedback,25:in work,40:confirmed,30:acknowledged,50:assigned,60:verify fail,70:verify wait,80:resolved,90:closed';

TagsNo tags attached.

Activities

thraxisp

thraxisp

2004-08-31 10:20

reporter   ~0007335

fixed in CVS.

The custom_strings_inc.php file needs to be evaluated for each language loaded. It wasn't because of a require_once command.