[Vtigercrm-commits] [vtiger development] #7624: No name displayed when emails are sent out to portal users

vtiger development vtiger-tickets at trac.vtiger.com
Mon Dec 17 15:06:23 PST 2012


#7624: No name displayed when emails are sent out to portal users
------------------------+---------------------------------------------------
 Reporter:  westley     |       Owner:  developer 
     Type:  defect      |      Status:  new       
 Priority:  unassigned  |   Milestone:  Unassigned
Component:  vtigercrm   |     Version:  5.4.0     
 Severity:  Low         |    Keywords:            
------------------------+---------------------------------------------------
 If a Contact in the CRM is a Portal user, and a trouble ticket is created,
 the email is sent out but the user's name is not displayed. Found a minor
 bug in modules/HelpDesk/HelpDesk.php, in the function
 getPortalTicketEmailContents($entityData), you want to change the
 following:


 {{{
 $contents = getTranslatedString('Dear', $moduleName) . " " .
 getParentName(parentId) . ",<br><br>";
 }}}


 to

 {{{

 $contents = getTranslatedString('Dear', $moduleName) . " " .
 getParentName($parentId) . ",<br><br>";
 }}}


 Missing $ in front of parentId variable

-- 
Ticket URL: <http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/7624>
vtiger development <http://trac.vtiger.com/>
vtiger CRM



More information about the vtigercrm-commits mailing list