Skip to content

Commit

Permalink
fix(CustomView) get correct user name for filter owner
Browse files Browse the repository at this point in the history
  • Loading branch information
joebordes committed Aug 7, 2022
1 parent fee8439 commit 0b12404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/CustomView/CustomView.php
Expand Up @@ -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;
}
Expand Down

0 comments on commit 0b12404

Please sign in to comment.