Removing priorities - What am I doing wrong?

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
VincentTygron
Posts: 1
Joined: 20 Dec 2017, 08:56

Removing priorities - What am I doing wrong?

Post by VincentTygron »

Hello,

I added to config_inc.php:

# Revised priority enum string with less priorities
$s_priority_enum_string = '10:none,20:low,30:normal,40:high';

Urgent and Immediate still appear, what am I missing here?

Thanks in advance!

Vince

v2.9.0
atrol
Site Admin
Posts: 8366
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: Removing priorities - What am I doing wrong?

Post by atrol »

Should be

Code: Select all

$g_priority_enum_string = '10:none,20:low,30:normal,40:high';
$s_ is needed for translations in custom_strings_inc.php.
Not needed in your case as you removed just existing priorities.
Please use Search before posting and read the Manual
Post Reply