Easy way to change Priority?

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
Guest

Easy way to change Priority?

Post 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
illes
Posts: 30
Joined: 09 Mar 2005, 08:37
Location: Budapest, Hungary

Check the manual

Post by illes »

thraxisp
Developer
Posts: 509
Joined: 14 Feb 2005, 03:38
Location: Ottawa, Canada
Contact:

Post 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.
Post Reply