Page 1 of 1

Easy way to change Priority?

Posted: 06 Apr 2005, 17:40
by Guest
Is there an easy way to modify the entries in the Priority field that doesn't require editing the code? Basically I'd like to change away from normal, minor, major, etc., and move to A, B, C, etc.

Thanks.
AM

Check the manual

Posted: 07 Apr 2005, 17:45
by illes

Posted: 07 Apr 2005, 18:30
by thraxisp
If you are talking about changing the labels, it is simple.

Create a custom_strings_inc.php file containing the following:

Code: Select all

<?php
# $s_priority_enum_string = '10:none,20:low,30:normal,40:high,50:urgent,60:immediate';

$s_priority_enum_string = '10:F,20:E,30:D,40:C,50:B,60:A';
?>
If you want to drop some of the priorities, you will also have to change $g_priority_enum_string in your config_inc.php file.