custom enum_strins

Get help from other users here.

Moderators: Developer, Contributor

Post Reply
web24
Posts: 17
Joined: 18 Jan 2017, 10:59

custom enum_strins

Post 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
atrol
Site Admin
Posts: 8378
Joined: 26 Mar 2008, 21:37
Location: Germany

Re: custom enum_strins

Post 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;
Please use Search before posting and read the Manual
web24
Posts: 17
Joined: 18 Jan 2017, 10:59

Re: custom enum_strins

Post by web24 »

hi atrol,
now it works perfect!
thanks a lot

thx
geri
Post Reply