diff --git a/layouts/v7/modules/Users/ListViewContents.tpl b/layouts/v7/modules/Users/ListViewContents.tpl
index be5e162413bbc719d9159e6fa366ebf6ecb1f1d8..d0e37a7258810e76ecbb45d78cc677bbe535cc63 100644
--- a/layouts/v7/modules/Users/ListViewContents.tpl
+++ b/layouts/v7/modules/Users/ListViewContents.tpl
@@ -122,13 +122,7 @@
 									<td class="{$WIDTHTYPE}" nowrap>
 										<span class="fieldValue">
 											<span class="value textOverflowEllipsis">
-												{if $LISTVIEW_HEADER->getName() eq 'is_owner'}
-													{if $LISTVIEW_ENTRY->get($LISTVIEW_HEADERNAME) eq 1}
-														{vtranslate('LBL_YES')}
-													{/if}
-												{else}
-													{$LISTVIEW_ENTRY->get($LISTVIEW_HEADERNAME)}
-												{/if}
+												{$LISTVIEW_ENTRY->get($LISTVIEW_HEADERNAME)}
 											</span>
 										</span>
 									</td>
diff --git a/modules/Users/Users.php b/modules/Users/Users.php
index 52e13414afe8371c156bc3f32feec6d54c004371..40edb728e2c46f27075f0065e8d3a1320955bcfb 100755
--- a/modules/Users/Users.php
+++ b/modules/Users/Users.php
@@ -97,8 +97,7 @@ class Users extends CRMEntity {
 			'Email'=>Array('vtiger_users'=>'email1'),
 			'Email2'=>Array('vtiger_users'=>'email2'),
 			'Admin'=>Array('vtiger_users'=>'is_admin'),
-			'Phone'=>Array('vtiger_users'=>'phone_work'),
-			'Owner'=>Array('vtiger_users'=>'is_owner')
+			'Phone'=>Array('vtiger_users'=>'phone_work')
 	);
 	var $list_fields_name = Array(
 			'Last Name'=>'last_name',
@@ -109,8 +108,7 @@ class Users extends CRMEntity {
 			'Email'=>'email1',
 			'Email2'=>'email2',
 			'Admin'=>'is_admin',
-			'Phone'=>'phone_work',
-			'Owner'=>'is_owner'
+			'Phone'=>'phone_work'
 	);
 
 	//Default Fields for Email Templates -- Pavani