Details
-
Type: Bug
-
Status: Done/Fixed
-
Priority: Minor
-
Resolution: Fixed/Completed
-
Affects Version/s: 3.1.5
-
Fix Version/s: 3.1.6
-
Component/s: None
-
Labels:None
Description
Originally report here:
http://forum.civicrm.org/index.php/topic,11513.0.html
The issue is happening when CiviCRM is creating new Joomla user accounts. The new user records have field sendEmail=1. This isn't a good default value, as this setting it reserved for Admin users typically.
Patch this file :
/administrator/components/com_civicrm/civicrm/CRM/Core/BAO/CMSUser.php
function createJoomlaUser. ( line 530 )
- $values['sendEmail'] = 1;
+ $values['sendEmail'] = 0;