Page 1 of 1

Rename Status Values

Posted: 19 Jan 2009, 10:41
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

Re: Rename Status Values

Posted: 19 Jan 2009, 16:30
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';

Re: Rename Status Values

Posted: 20 Jan 2009, 08:36
by SamLowry
It works perfectly! Thank you for your help.