Send reminder problem

Post about your customizations to share with others.

Moderators: Developer, Contributor

Post Reply
bidaubayle
Posts: 3
Joined: 30 Aug 2012, 13:27

Send reminder problem

Post by bidaubayle »

Hi, I'm french, sorry for my bad english, but I need your help.

I have a problem with the function of sending reminders.
I was asked to lower the threshold levels for access to this feature, so I well lowered the threshold level to the reporter. So all users, from reporter to admin, see the function and the dialog box appears well.
However, in the list of people to whom you can send a reminder, it appear only users with developer threshold level (so all developers, managers, admin)! And my client would of course also be able to send reminders to reporters or updaters ...
I can’t find any solution in the customization code ! Can someone help me? Did someone already encountered this problem?
Thank you for your help.
David B.
cas
Posts: 1768
Joined: 11 Mar 2006, 16:08
Contact:

Re: Send reminder problem

Post by cas »

/**
* The minimum access level required to show up in the list of users who can receive a reminder.
* The access level is that of the project to which the issue belongs.
* @global int $g_reminder_receive_threshold
*/ $g_reminder_receive_threshold = DEVELOPER;
so add the following line into config_inc.php :
$g_reminder_receive_threshold = REPORTER;
Post Reply