diff --git a/modules/Migration/schema/540_to_600RC.php b/modules/Migration/schema/540_to_600RC.php
index 2526c686f0ddadee13c6f280cee7c410a6bccd55..3aeac82e2cd62ba368a466abc298bb70c91e7e63 100644
--- a/modules/Migration/schema/540_to_600RC.php
+++ b/modules/Migration/schema/540_to_600RC.php
@@ -818,7 +818,7 @@ do {
 		$labelInfo = getEntityName($row['setype'], array(intval($row['crmid'])), true);
 
 		if ($labelInfo) {
-			$label = $labelInfo[$row['crmid']];
+			$label = decode_html($labelInfo[$row['crmid']]);
 			Migration_Index_View::ExecuteQuery('UPDATE vtiger_crmentity SET label=? WHERE crmid=? AND setype=?',
 						array($label, $row['crmid'], $row['setype']));
 		}
@@ -2482,4 +2482,4 @@ Migration_Index_View::ExecuteQuery("CREATE TABLE IF NOT EXISTS vtiger_faqcf (
                                 faqid int(19), 
                                 PRIMARY KEY (faqid), 
                                 CONSTRAINT fk_1_vtiger_faqcf FOREIGN KEY (faqid) REFERENCES vtiger_faq(id) ON DELETE CASCADE 
-                ) ENGINE=InnoDB DEFAULT CHARSET=utf8", array()); 
\ No newline at end of file
+                ) ENGINE=InnoDB DEFAULT CHARSET=utf8", array());