Comment 16 for bug 1520299

Revision history for this message
Murali Kunda (murali-kz) wrote :

Hi,
I fixed both issues mentioned above with following code changes in class.support.php

bug-1 : .Automatic adding of To and CC e-maild to authorized repliers list
Code change :
---------------------------------------
Authorized_Replier::manualInsert($issue_id, $address['email'], false);
-----------------------------------------
Bug-2 : Active users (My employees) available on Eventum application also are not added to "Authorized repliers list"
Code change :
-----------------------------------------------
$users = User::getActiveAssocList($prj_id);
foreach ($users as $usr_id => $usr_full_name) {
$email = Misc::escapeString(User::getFromHeader($usr_id));
Authorized_Replier::manualInsert($issue_id, $email, false);
}
--------------------------------------------