Page 1 of 1

custom enum_strins

Posted: 05 Feb 2017, 17:44
by web24
hi,
i don't need all of the enum_strings and wanted to disable some of them.
i thought when i insert following in the config_inc.php it should work but doesn't:

$s_status_enum_string = '10:new,40:confirmed,50:assigned,80:resolved';

and another thing in the config ist that i can't disable the timeline like in the admin_guide:

$g_timeline_view_threshold = 'NOBODY';

thx
geri

mantis: 2.1.0
php: 7.0.13
database: 5.5.5-10.1.19-MariaDB

Re: custom enum_strins

Posted: 05 Feb 2017, 19:39
by atrol
web24 wrote:$s_status_enum_string = '10:new,40:confirmed,50:assigned,80:resolved';
Should be

Code: Select all

$g_status_enum_string =   '10:new,40:confirmed,50:assigned,80:resolved';
web24 wrote: and another thing in the config ist that i can't disable the timeline like in the admin_guide:
$g_timeline_view_threshold = 'NOBODY';
Should be

Code: Select all

$g_timeline_view_threshold = NOBODY;

Re: custom enum_strins

Posted: 05 Feb 2017, 20:28
by web24
hi atrol,
now it works perfect!
thanks a lot

thx
geri