Reputation: 1935
There is a Bugs Module in SugarCRM/SuiteCRM which editview has fields "Found in release" and "Fixed in release". By default they both empty. User should add versions through the module Releases.
But here I have a problem.
How can I enable Release module tab?
Upvotes: 1
Views: 293
Reputation: 906
Try to add the link manually to your admin page and open a ticket (report issue).
To archive this add a file in custom/Extension/modules/Administration/ext/Release.php or by adding this to your manifest.php if you want a installable patch:
'administration' =>
array(
array(
'from' => '<basepath>/Release.php',
'to' => 'modules/Administration/Release.php',
),
),
This goes into the file Release.php:
$admin_option_defs = array();
$admin_option_defs['Administration'] = array(
'release_config' => array(
'Release',
'LBL_MANAGE_RELEASES',
'LBL_RELEASE',
'./index.php?module=Releases&action=index'
),
);
$admin_group_header[] = array(
'LBL_RELEASE',
'',
false,
$admin_option_defs,
''
);
The labels should still be there so it should work after a repair and rebuild
Upvotes: 1