Skip to content

Commit

Permalink
Use iPersonNameStyle in GroupView (#7146)
Browse files Browse the repository at this point in the history
  • Loading branch information
DawoudIO authored Sep 15, 2024
2 parents 13d5ad7 + 0580d92 commit d051223
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions src/ChurchCRM/model/ChurchCRM/Person.php
Original file line number Diff line number Diff line change
Expand Up @@ -687,6 +687,7 @@ public function toArray($keyType = TableMap::TYPE_PHPNAME, $includeLazyLoadColum
{
$array = parent::toArray();
$array['Address'] = $this->getAddress();
$array['FullName'] = $this->getFullName();

return $array;
}
Expand Down
4 changes: 1 addition & 3 deletions src/skin/js/GroupView.js
Original file line number Diff line number Diff line change
Expand Up @@ -247,9 +247,7 @@ function initDataTable() {
'"><a target="_top" href="PersonView.php?PersonID=' +
full.PersonId +
'">' +
full.Person.FirstName +
" " +
full.Person.LastName +
full.Person.FullName +
"</a>"
);
},
Expand Down

0 comments on commit d051223

Please sign in to comment.