From 0b12404dbede6eb54436de6944c7a704ff91e157 Mon Sep 17 00:00:00 2001 From: joebordes Date: Mon, 8 Aug 2022 00:59:09 +0200 Subject: [PATCH] fix(CustomView) get correct user name for filter owner --- modules/CustomView/CustomView.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/CustomView/CustomView.php b/modules/CustomView/CustomView.php index 0f3b7c613a..1bea2b363c 100644 --- a/modules/CustomView/CustomView.php +++ b/modules/CustomView/CustomView.php @@ -209,7 +209,7 @@ public function getCustomViewCombo($viewid = '', $markselected = true) { $cuserroles = getRoleAndSubordinateUserIds($current_user->column_fields['roleid']); foreach ($getViewsByModule['filters'] as $cvid => $cvrow) { $cvrow['cvid'] = $cvid; - $cvrow['ename'] = $current_user->ename; + $cvrow['ename'] = getUserFullName($cvrow['userid']); if ($cvrow['raw_name'] == 'All' && $Application_All_Filter_Show == 0) { continue; }