diff --git a/layouts/v7/modules/Users/Login.tpl b/layouts/v7/modules/Users/Login.tpl
index 22cef5029a9610bcca5f328d7731bcf150c683a0..10005f03859ecbd6b5a547d8aff7f6838ed8fe82 100644
--- a/layouts/v7/modules/Users/Login.tpl
+++ b/layouts/v7/modules/Users/Login.tpl
@@ -258,16 +258,17 @@
 									<div class="row">
 										{if $BLOCK_DATA.image}
 											<div class="col-lg-3" style="min-height: 100px;"><img src="{$BLOCK_DATA.image}" style="width: 100%;height: 100%;"/></div>
-											<div class="col-lg-9" title="{$BLOCK_DATA.summary}">
-											{else}
-												<div class="col-lg-12" title="{$BLOCK_DATA.summary}">
-												{/if}
+											<div class="col-lg-9">
+										{else}
+											<div class="col-lg-12">
+										{/if}
+											<div title="{$BLOCK_DATA.summary}">
 												<h4>{$BLOCK_DATA.displayTitle}</h4>
 												{$BLOCK_DATA.displaySummary}<br><br>
-												<span class="blockLink">
-													<a href="{$BLOCK_DATA.url}" target="_blank">{$BLOCK_DATA.urlalt}</a>
-												</span>
 											</div>
+											<span class="blockLink">
+												<a href="{$BLOCK_DATA.url}" target="_blank">{$BLOCK_DATA.urlalt}</a>
+											</span>
 										</div>
 									</div>
 								{/foreach}
diff --git a/layouts/v7/modules/Vtiger/resources/Detail.js b/layouts/v7/modules/Vtiger/resources/Detail.js
index 50e9ff09f2a63e5ceaf10f8a5bf8caa42f737265..e316751c198d5d3f71ef66127b403fc39a2f1baa 100644
--- a/layouts/v7/modules/Vtiger/resources/Detail.js
+++ b/layouts/v7/modules/Vtiger/resources/Detail.js
@@ -1261,7 +1261,7 @@ Vtiger.Class("Vtiger_Detail_Js",{
 				}
 				fieldElement = fieldElement.filter('[type="checkbox"]');
 			} else if(fieldType == 'reference'){
-				ajaxEditNewValue = fieldElement.attr('value');
+				ajaxEditNewValue = fieldElement.data('value');
 			}
 
 			// prev Value should be taken based on field Type
diff --git a/layouts/v7/modules/Vtiger/resources/Vtiger.js b/layouts/v7/modules/Vtiger/resources/Vtiger.js
index cde4a443e232a1fe6c163148a11eb7e34b62453b..14c8deee07e537eaf8f6a975b041ab2e04cb8969 100644
--- a/layouts/v7/modules/Vtiger/resources/Vtiger.js
+++ b/layouts/v7/modules/Vtiger/resources/Vtiger.js
@@ -829,6 +829,7 @@ Vtiger.Class('Vtiger_Index_Js', {
 				var fieldName = sourceField.attr("name");
 				parent.find('input[name="'+fieldName+'"]').val(selectedItemData.id);
 				element.attr("value",selectedItemData.id);
+				element.data("value",selectedItemData.id);
 				parent.find('.clearReferenceSelection').removeClass('hide');
 				parent.find('.referencefield-wrapper').addClass('selected');
 				element.attr("disabled","disabled");
diff --git a/modules/Users/views/Login.php b/modules/Users/views/Login.php
index 3b2504b8ae9ff6d013362dc5f238c22b3fad43c8..cc50daae17a6259986933c407d7c5960bb8d4510 100644
--- a/modules/Users/views/Login.php
+++ b/modules/Users/views/Login.php
@@ -43,7 +43,7 @@ class Users_Login_View extends Vtiger_View_Controller {
 			$oldTextLength = vglobal('listview_max_textlength');
 			foreach ($jsonData as $blockData) {
 				if ($blockData['type'] === 'feature') {
-					$blockData['heading'] = "What's new in Vtiger";
+					$blockData['heading'] = "What's new in Vtiger Cloud";
 				} else if ($blockData['type'] === 'news') {
 					$blockData['heading'] = "Latest News";
 					$blockData['image'] = '';