Skip to content
Snippets Groups Projects
Commit 13c55a4b authored by Satish's avatar Satish
Browse files

Merge branch 'master' of http://code.vtiger.com/vtiger/vtigercrm

parents c5141f77 03d6caa0
No related branches found
No related tags found
No related merge requests found
......@@ -15,8 +15,13 @@ class Vtiger_RecordLabelUpdater_Handler extends VTEventHandler {
global $adb;
if ($eventName == 'vtiger.entity.aftersave') {
$record = $data->getId();
$module = $data->getModuleName();
$record = $data->getId();
$module = $data->getModuleName();
if($module === 'Users') {
return;
}
$labelInfo = getEntityName($module, $record, true);
if ($labelInfo) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment