Rename Status Values

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
SamLowry
Posts: 2
Joined: 19 Jan 2009, 09:54

Rename Status Values

Post by SamLowry »

Hello,

In the Administration Guide I found the way to add new Status values in custom_constant_inc.php, custom_strings_inc.php and config_inc.php.

But, is there a way to simply rename a Status (i.e. I need to rename the Status "acknowledged" by "suspended")?

Thank you
Kirill
Posts: 640
Joined: 25 Nov 2007, 08:05
Location: Kaliningrad, RF
Contact:

Re: Rename Status Values

Post by Kirill »

Try rename
$g_status_enum_string = '10:new,20:feedback,30:acknowledged,40:confirmed,50:assigned,80:resolved,90:closed';

in custom_strings_inc.php
$g_status_enum_string = '10:new,20:feedback,30:suspended,40:confirmed,50:assigned,80:resolved,90:closed';
SamLowry
Posts: 2
Joined: 19 Jan 2009, 09:54

Re: Rename Status Values

Post by SamLowry »

It works perfectly! Thank you for your help.
Post Reply