On 03/25/2009 11:42 AM, Jon Hardcastle wrote: > Hi guys, can anyone confirm if it is possible to override the severity in the > configuration options? I need to be able to have per project severity. > > Regards. > >> Is this possible in the configuration options? >> >> complex of: >> array(10 => featureTEST, 20=>1-trivialid, >> 30=>text, 40=>2-tweak,50=>3-minorcategory, >> 60=>4-majorstatus, 70=>5-crashsummary , >> 80=>6-block) >> >> >> string of: >> 0:Enhancement,20:Low,30:Medium,40:high,50:Critical,60:Custom,70:,80: >>
It is possible: create a string matching the format of $g_severity_enum_string in the Manage Configuration Report page for each project, and define a global language string in custom_strings_inc.php containing a single enum string for all the severity variants in your configuration. Eg: project A: "0:feature,10:crash,20:corruption" project B: "0:feature,15:block,25:crash" $s_severity_enum_string = "0:Feature,10:Crash,15:Block,20:Corruption,25:Crash" Hope that helps; cheers -- John Reese LeetCode.net ------------------------------------------------------------------------------ _______________________________________________ mantisbt-help mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/mantisbt-help
