As default, when a user reports an issue. I want the the option to be set as default to private insted of the current default, public. I've tried to implement $g_default_bug_view_status and $g_default_bugnote_view_status but havn't noticed the value switching (under report issue).
Please help asap. ads.harbage@hotmail.com
How to set default Private and Public Options
Moderators: Developer, Contributor
Re: How to set default Private and Public Options
Code: Select all
/**
* Default Bug View Status (VS_PUBLIC or VS_PRIVATE)
* @global int $g_default_bug_view_status
*/
$g_default_bug_view_status = VS_PUBLIC;
Code: Select all
$g_default_bug_view_status = VS_PRIVATE;
-
- Posts: 3
- Joined: 09 Jun 2009, 08:58
Re: How to set default Private and Public Options
Super, it works.